[llvm] r245958 - fix CHECK-LABEL and wrong label
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 25 11:12:41 PDT 2015
Author: spatel
Date: Tue Aug 25 13:12:40 2015
New Revision: 245958
URL: http://llvm.org/viewvc/llvm-project?rev=245958&view=rev
Log:
fix CHECK-LABEL and wrong label
Modified:
llvm/trunk/test/CodeGen/AArch64/fast-isel-branch-cond-split.ll
Modified: llvm/trunk/test/CodeGen/AArch64/fast-isel-branch-cond-split.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/fast-isel-branch-cond-split.ll?rev=245958&r1=245957&r2=245958&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/fast-isel-branch-cond-split.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/fast-isel-branch-cond-split.ll Tue Aug 25 13:12:40 2015
@@ -1,6 +1,6 @@
; RUN: llc -mtriple=aarch64-apple-darwin -fast-isel -fast-isel-abort=1 -verify-machineinstrs < %s | FileCheck %s
-; CHECK-label: test_or
+; CHECK-LABEL: test_or
; CHECK: cbnz w0, {{LBB[0-9]+_2}}
; CHECK: cbz w1, {{LBB[0-9]+_1}}
define i64 @test_or(i32 %a, i32 %b) {
@@ -18,7 +18,7 @@ bb4:
ret i64 %2
}
-; CHECK-label: test_ans
+; CHECK-LABEL: test_and
; CHECK: cbz w0, {{LBB[0-9]+_2}}
; CHECK: cbnz w1, {{LBB[0-9]+_3}}
define i64 @test_and(i32 %a, i32 %b) {
More information about the llvm-commits
mailing list