diff options
| author | Enea Zaffanella <zaffanella@cs.unipr.it> | 2013-11-21 16:43:28 +0000 |
|---|---|---|
| committer | Enea Zaffanella <zaffanella@cs.unipr.it> | 2013-11-21 16:43:28 +0000 |
| commit | dd3e75449f4da97194100374972445bcc4f9d2de (patch) | |
| tree | ed6234e39c7897aa29fe8d5222463694a401106f /clang | |
| parent | 97af2ec096bfe00d07cd22645e813bacdcce7221 (diff) | |
| download | bcm5719-llvm-dd3e75449f4da97194100374972445bcc4f9d2de.tar.gz bcm5719-llvm-dd3e75449f4da97194100374972445bcc4f9d2de.zip | |
Added testcase for r195255.
llvm-svn: 195366
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/test/SemaCXX/ast-print.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/ast-print.cpp b/clang/test/SemaCXX/ast-print.cpp index a1975b4ac26..977ba7afa4d 100644 --- a/clang/test/SemaCXX/ast-print.cpp +++ b/clang/test/SemaCXX/ast-print.cpp @@ -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); +} |

