diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-08 08:55:49 -0700 |
---|---|---|
committer | Pirama Arumuga Nainar <pirama@google.com> | 2015-04-09 15:04:38 -0700 |
commit | 4c5e43da7792f75567b693105cc53e3f1992ad98 (patch) | |
tree | 1b2c9792582e12f5af0b1512e3094425f0dc0df9 /test/CodeGen/SystemZ/branch-06.ll | |
parent | c75239e6119d0f9a74c57099d91cbc9bde56bf33 (diff) | |
download | external_llvm-4c5e43da7792f75567b693105cc53e3f1992ad98.zip external_llvm-4c5e43da7792f75567b693105cc53e3f1992ad98.tar.gz external_llvm-4c5e43da7792f75567b693105cc53e3f1992ad98.tar.bz2 |
Update aosp/master llvm for rebase to r233350
Change-Id: I07d935f8793ee8ec6b7da003f6483046594bca49
Diffstat (limited to 'test/CodeGen/SystemZ/branch-06.ll')
-rw-r--r-- | test/CodeGen/SystemZ/branch-06.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/CodeGen/SystemZ/branch-06.ll b/test/CodeGen/SystemZ/branch-06.ll index 2fa23b7..4549b12 100644 --- a/test/CodeGen/SystemZ/branch-06.ll +++ b/test/CodeGen/SystemZ/branch-06.ll @@ -100,7 +100,7 @@ define void @f7(i8 *%targetptr) { br label %loop loop: %val = call i32 @foo() - %byte = load i8 *%targetptr + %byte = load i8 , i8 *%targetptr %target = zext i8 %byte to i32 %cond = icmp eq i32 %val, %target br i1 %cond, label %loop, label %exit @@ -118,7 +118,7 @@ define void @f8(i16 *%targetptr) { br label %loop loop: %val = call i32 @foo() - %half = load i16 *%targetptr + %half = load i16 , i16 *%targetptr %target = zext i16 %half to i32 %cond = icmp eq i32 %val, %target br i1 %cond, label %loop, label %exit @@ -136,7 +136,7 @@ define void @f9(i16 *%targetptr) { br label %loop loop: %val = call i32 @foo() - %half = load i16 *@g1 + %half = load i16 , i16 *@g1 %target = zext i16 %half to i32 %cond = icmp eq i32 %val, %target br i1 %cond, label %loop, label %exit @@ -156,9 +156,9 @@ define void @f10(i8 *%targetptr1) { br label %loop loop: %val = call i32 @foo() - %targetptr2 = getelementptr i8 *%targetptr1, i64 1 - %byte1 = load i8 *%targetptr1 - %byte2 = load i8 *%targetptr2 + %targetptr2 = getelementptr i8, i8 *%targetptr1, i64 1 + %byte1 = load i8 , i8 *%targetptr1 + %byte2 = load i8 , i8 *%targetptr2 %ext1 = zext i8 %byte1 to i32 %ext2 = zext i8 %byte2 to i32 %cond = icmp ult i32 %ext1, %ext2 @@ -178,9 +178,9 @@ define void @f11(i16 *%targetptr1) { br label %loop loop: %val = call i32 @foo() - %targetptr2 = getelementptr i16 *%targetptr1, i64 1 - %half1 = load i16 *%targetptr1 - %half2 = load i16 *%targetptr2 + %targetptr2 = getelementptr i16, i16 *%targetptr1, i64 1 + %half1 = load i16 , i16 *%targetptr1 + %half2 = load i16 , i16 *%targetptr2 %ext1 = zext i16 %half1 to i32 %ext2 = zext i16 %half2 to i32 %cond = icmp ult i32 %ext1, %ext2 |