Added testcase for r195255.

llvm-svn: 195366
This commit is contained in:
Enea Zaffanella 2013-11-21 16:43:28 +00:00
parent 97af2ec096
commit dd3e75449f
1 changed files with 9 additions and 0 deletions

View File

@ -164,3 +164,12 @@ void test13() {
void test14() {
struct X { union { int x; } x; };
}
// CHECK: float test15() {
// CHECK: return __builtin_asinf(1.F);
// CHECK: }
// CHECK-NOT: extern "C"
float test15() {
return __builtin_asinf(1.0F);
}