1 ; RUN: llc < %s -mtriple=i386-apple-darwin8 -mattr=+sse2 | FileCheck %s --check-prefix=X32
2 ; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+sse2 | FileCheck %s --check-prefix=X64
4 ; Sibcall optimization of expanded libcalls.
7 define double @foo(double %a) nounwind readonly ssp {
14 %0 = tail call double @sin(double %a) nounwind readonly
18 define float @bar(float %a) nounwind readonly ssp {
25 %0 = tail call float @sinf(float %a) nounwind readonly
29 declare float @sinf(float) nounwind readonly
31 declare double @sin(double) nounwind readonly