diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/non-lazy-bind.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/non-lazy-bind.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/non-lazy-bind.ll b/llvm/test/CodeGen/X86/non-lazy-bind.ll index f72965877dd..546a1365f26 100644 --- a/llvm/test/CodeGen/X86/non-lazy-bind.ll +++ b/llvm/test/CodeGen/X86/non-lazy-bind.ll @@ -3,7 +3,7 @@ declare void @lazy() nonlazybind declare void @not() -; CHECK: foo: +; CHECK-LABEL: foo: ; CHECK: callq _not ; CHECK: callq *_lazy@GOTPCREL(%rip) define void @foo() nounwind { @@ -12,14 +12,14 @@ define void @foo() nounwind { ret void } -; CHECK: tail_call_regular: +; CHECK-LABEL: tail_call_regular: ; CHECK: jmp _not define void @tail_call_regular() nounwind { tail call void @not() ret void } -; CHECK: tail_call_eager: +; CHECK-LABEL: tail_call_eager: ; CHECK: jmpq *_lazy@GOTPCREL(%rip) define void @tail_call_eager() nounwind { tail call void @lazy() |