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/AArch64/compare-branch.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/AArch64/compare-branch.ll')
-rw-r--r-- | test/CodeGen/AArch64/compare-branch.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/AArch64/compare-branch.ll b/test/CodeGen/AArch64/compare-branch.ll index a1a87cf..4e0f69d 100644 --- a/test/CodeGen/AArch64/compare-branch.ll +++ b/test/CodeGen/AArch64/compare-branch.ll @@ -6,25 +6,25 @@ define void @foo() { ; CHECK-LABEL: foo: - %val1 = load volatile i32* @var32 + %val1 = load volatile i32, i32* @var32 %tst1 = icmp eq i32 %val1, 0 br i1 %tst1, label %end, label %test2 ; CHECK: cbz {{w[0-9]+}}, .LBB test2: - %val2 = load volatile i32* @var32 + %val2 = load volatile i32, i32* @var32 %tst2 = icmp ne i32 %val2, 0 br i1 %tst2, label %end, label %test3 ; CHECK: cbnz {{w[0-9]+}}, .LBB test3: - %val3 = load volatile i64* @var64 + %val3 = load volatile i64, i64* @var64 %tst3 = icmp eq i64 %val3, 0 br i1 %tst3, label %end, label %test4 ; CHECK: cbz {{x[0-9]+}}, .LBB test4: - %val4 = load volatile i64* @var64 + %val4 = load volatile i64, i64* @var64 %tst4 = icmp ne i64 %val4, 0 br i1 %tst4, label %end, label %test5 ; CHECK: cbnz {{x[0-9]+}}, .LBB |