diff options
Diffstat (limited to 'test/CodeGen/X86/sibcall-5.ll')
-rw-r--r-- | test/CodeGen/X86/sibcall-5.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/sibcall-5.ll b/test/CodeGen/X86/sibcall-5.ll index 937817e45647b..c479030508a9c 100644 --- a/test/CodeGen/X86/sibcall-5.ll +++ b/test/CodeGen/X86/sibcall-5.ll @@ -7,20 +7,20 @@ define double @foo(double %a) nounwind readonly ssp { entry: -; X32: foo: +; X32-LABEL: foo: ; X32: jmp _sin$stub -; X64: foo: +; X64-LABEL: foo: ; X64: jmp _sin %0 = tail call double @sin(double %a) nounwind readonly ret double %0 } define float @bar(float %a) nounwind readonly ssp { -; X32: bar: +; X32-LABEL: bar: ; X32: jmp _sinf$stub -; X64: bar: +; X64-LABEL: bar: ; X64: jmp _sinf entry: %0 = tail call float @sinf(float %a) nounwind readonly |