diff options
author | dim <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
commit | 173a4f43a911175643bda81ee675e8d9269056ea (patch) | |
tree | 47df2c12b57214af6c31e47404b005675b8b7ffc /test/CodeGen/libcall-declarations.c | |
parent | 88f7a7d5251a2d813460274c92decc143a11569b (diff) | |
download | FreeBSD-src-173a4f43a911175643bda81ee675e8d9269056ea.zip FreeBSD-src-173a4f43a911175643bda81ee675e8d9269056ea.tar.gz |
Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_350/final@216957
Diffstat (limited to 'test/CodeGen/libcall-declarations.c')
-rw-r--r-- | test/CodeGen/libcall-declarations.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/test/CodeGen/libcall-declarations.c b/test/CodeGen/libcall-declarations.c index 6442e29..345b74f 100644 --- a/test/CodeGen/libcall-declarations.c +++ b/test/CodeGen/libcall-declarations.c @@ -244,6 +244,16 @@ long double _Complex ctanl(long double _Complex); double _Complex ctanh(double _Complex); float _Complex ctanhf(float _Complex); long double _Complex ctanhl(long double _Complex); + +double __sinpi(double); +float __sinpif(float); +double __cospi(double); +float __cospif(float); +double __tanpi(double); +float __tanpif(float); + +double __exp10(double); +float __exp10f(float); #ifdef __cplusplus } #endif @@ -298,7 +308,8 @@ void *use[] = { F(crealf), F(creall), F(csin), F(csinf), F(csinl), F(csinh), F(csinhf), F(csinhl), F(csqrt), F(csqrtf), F(csqrtl), F(ctan), F(ctanf), F(ctanl), F(ctanh), - F(ctanhf), F(ctanhl) + F(ctanhf), F(ctanhl), F(__sinpi), F(__sinpif), F(__cospi), + F(__cospif), F(__tanpi), F(__tanpif), F(__exp10), F(__exp10f) }; // CHECK-NOERRNO: declare double @atan2(double, double) [[NUW:#[0-9]+]] @@ -510,6 +521,14 @@ void *use[] = { // CHECK-NOERRNO: declare <2 x float> @ctanf(<2 x float>) [[NUW]] // CHECK-NOERRNO: declare { double, double } @ctanh(double, double) [[NUW]] // CHECK-NOERRNO: declare <2 x float> @ctanhf(<2 x float>) [[NUW]] +// CHECK-NOERRNO: declare double @__sinpi(double) [[NUW]] +// CHECK-NOERRNO: declare float @__sinpif(float) [[NUW]] +// CHECK-NOERRNO: declare double @__cospi(double) [[NUW]] +// CHECK-NOERRNO: declare float @__cospif(float) [[NUW]] +// CHECK-NOERRNO: declare double @__tanpi(double) [[NUW]] +// CHECK-NOERRNO: declare float @__tanpif(float) [[NUW]] +// CHECK-NOERRNO: declare double @__exp10(double) [[NUW]] +// CHECK-NOERRNO: declare float @__exp10f(float) [[NUW]] // CHECK-ERRNO: declare i32 @abs(i32) [[NUW:#[0-9]+]] // CHECK-ERRNO: declare i64 @labs(i64) [[NUW]] |