diff options
Diffstat (limited to 'test/CodeGen/X86/misched-balance.ll')
-rw-r--r-- | test/CodeGen/X86/misched-balance.ll | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/CodeGen/X86/misched-balance.ll b/test/CodeGen/X86/misched-balance.ll index 5f6c501..1900802 100644 --- a/test/CodeGen/X86/misched-balance.ll +++ b/test/CodeGen/X86/misched-balance.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86-64 -mcpu=core2 -pre-RA-sched=source -enable-misched -verify-machineinstrs | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mcpu=core2 -pre-RA-sched=source -enable-misched -verify-machineinstrs | FileCheck %s ; ; Verify that misched resource/latency balancy heuristics are sane. @@ -15,7 +15,7 @@ entry: ; Since mmult1 IR is already in good order, this effectively ensure ; the scheduler maintains source order. ; -; CHECK: %for.body +; CHECK-LABEL: %for.body ; CHECK-NOT: %rsp ; CHECK: imull 4 ; CHECK-NOT: {{imull|rsp}} @@ -45,7 +45,7 @@ entry: ; CHECK-NOT: {{imull|rsp}} ; CHECK: addl ; CHECK-NOT: {{imull|rsp}} -; CHECK: %end +; CHECK-LABEL: %end for.body: %indvars.iv42.i = phi i64 [ %indvars.iv.next43.i, %for.body ], [ 0, %entry ] %tmp57 = load i32* %tmp56, align 4 @@ -120,7 +120,7 @@ end: ; Unlike the above loop, this IR starts out bad and must be ; rescheduled. ; -; CHECK: %for.body +; CHECK-LABEL: %for.body ; CHECK-NOT: %rsp ; CHECK: imull 4 ; CHECK-NOT: {{imull|rsp}} @@ -150,7 +150,7 @@ end: ; CHECK-NOT: {{imull|rsp}} ; CHECK: addl ; CHECK-NOT: {{imull|rsp}} -; CHECK: %end +; CHECK-LABEL: %end define void @unrolled_mmult2(i32* %tmp55, i32* %tmp56, i32* %pre, i32* %pre94, i32* %pre95, i32* %pre96, i32* %pre97, i32* %pre98, i32* %pre99, i32* %pre100, i32* %pre101, i32* %pre102, i32* %pre103, i32* %pre104) @@ -232,8 +232,8 @@ end: ; balanced heuristics are interesting here because we have resource, ; latency, and register limits all at once. For now, simply check that ; we don't use any callee-saves. -; CHECK: @encpc1 -; CHECK: %entry +; CHECK-LABEL: @encpc1 +; CHECK-LABEL: %entry ; CHECK-NOT: push ; CHECK-NOT: pop ; CHECK: ret |