diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 |
commit | f8af5cf600354830d4ccf59732403f0f073eccb9 (patch) | |
tree | 2ba0398b4c42ad4f55561327538044fd2c925a8b /test/CodeGen/X86/non-lazy-bind.ll | |
parent | 59d6cff90eecf31cb3dd860c4e786674cfdd42eb (diff) |
Diffstat (limited to 'test/CodeGen/X86/non-lazy-bind.ll')
-rw-r--r-- | test/CodeGen/X86/non-lazy-bind.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/non-lazy-bind.ll b/test/CodeGen/X86/non-lazy-bind.ll index f72965877ddb3..546a1365f26ab 100644 --- a/test/CodeGen/X86/non-lazy-bind.ll +++ b/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() |