diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-10 21:22:52 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-10 21:23:04 +0000 |
commit | 31195f0bdca6ee2a5e72d07edf13e1d81206d949 (patch) | |
tree | 1b2c9792582e12f5af0b1512e3094425f0dc0df9 /test/Feature/constexpr.ll | |
parent | c75239e6119d0f9a74c57099d91cbc9bde56bf33 (diff) | |
parent | 4c5e43da7792f75567b693105cc53e3f1992ad98 (diff) | |
download | external_llvm-31195f0bdca6ee2a5e72d07edf13e1d81206d949.zip external_llvm-31195f0bdca6ee2a5e72d07edf13e1d81206d949.tar.gz external_llvm-31195f0bdca6ee2a5e72d07edf13e1d81206d949.tar.bz2 |
Merge "Update aosp/master llvm for rebase to r233350"
Diffstat (limited to 'test/Feature/constexpr.ll')
-rw-r--r-- | test/Feature/constexpr.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/Feature/constexpr.ll b/test/Feature/constexpr.ll index 13e6f36..ee958ce 100644 --- a/test/Feature/constexpr.ll +++ b/test/Feature/constexpr.ll @@ -32,17 +32,17 @@ global float 0.0 ;;--------------------------------------------------- @array = constant [2 x i32] [ i32 12, i32 52 ] -@arrayPtr = global i32* getelementptr ([2 x i32]* @array, i64 0, i64 0) ;; i32* &@array[0][0] -@arrayPtr5 = global i32** getelementptr (i32** @arrayPtr, i64 5) ;; i32* &@arrayPtr[5] +@arrayPtr = global i32* getelementptr ([2 x i32], [2 x i32]* @array, i64 0, i64 0) ;; i32* &@array[0][0] +@arrayPtr5 = global i32** getelementptr (i32*, i32** @arrayPtr, i64 5) ;; i32* &@arrayPtr[5] @somestr = constant [11x i8] c"hello world" -@char5 = global i8* getelementptr([11x i8]* @somestr, i64 0, i64 5) +@char5 = global i8* getelementptr([11x i8], [11x i8]* @somestr, i64 0, i64 5) ;; cast of getelementptr -@char8a = global i32* bitcast (i8* getelementptr([11x i8]* @somestr, i64 0, i64 8) to i32*) +@char8a = global i32* bitcast (i8* getelementptr([11x i8], [11x i8]* @somestr, i64 0, i64 8) to i32*) ;; getelementptr containing casts -@char8b = global i8* getelementptr([11x i8]* @somestr, i64 sext (i8 0 to i64), i64 sext (i8 8 to i64)) +@char8b = global i8* getelementptr([11x i8], [11x i8]* @somestr, i64 sext (i8 0 to i64), i64 sext (i8 8 to i64)) ;;------------------------------------------------------- ;; TODO: Test constant getelementpr expressions for structures @@ -61,17 +61,17 @@ global float 0.0 @S3 = global %SAType* @S3c ;; Ref. to constant S3 ;; Pointer to float (**@S1).1.0 -@S1fld1a = global float* getelementptr (%SType* @S2c, i64 0, i32 1, i32 0) +@S1fld1a = global float* getelementptr (%SType, %SType* @S2c, i64 0, i32 1, i32 0) ;; Another ptr to the same! -@S1fld1b = global float* getelementptr (%SType* @S2c, i64 0, i32 1, i32 0) +@S1fld1b = global float* getelementptr (%SType, %SType* @S2c, i64 0, i32 1, i32 0) @S1fld1bptr = global float** @S1fld1b ;; Ref. to previous pointer ;; Pointer to i8 (**@S2).1.1.0 -@S2fld3 = global i8* getelementptr (%SType* @S2c, i64 0, i32 1, i32 1, i32 0) +@S2fld3 = global i8* getelementptr (%SType, %SType* @S2c, i64 0, i32 1, i32 1, i32 0) ;; Pointer to float (**@S2).1.0[0] -;@S3fld3 = global float* getelementptr (%SAType** @S3, i64 0, i64 0, i32 1, i32 0, i64 0) +;@S3fld3 = global float* getelementptr (%SAType*, %SAType** @S3, i64 0, i64 0, i32 1, i32 0, i64 0) ;;--------------------------------------------------------- ;; TODO: Test constant expressions for unary and binary operators |