diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-05-08 18:29:52 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-05-08 18:29:52 +0000 |
commit | 5f164afca376b05b6fcbc5ab85ea108b6d6ee2b9 (patch) | |
tree | 4c4d6291cb1a18117078d11ca5c146086c7cd2b8 /test/Sema/implicit-builtin-decl.c | |
parent | 5ea66619a3108e2985e952b9a60a84316d464b25 (diff) |
Fix fmin*/fmax* library builtin signatures.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156396 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/implicit-builtin-decl.c')
-rw-r--r-- | test/Sema/implicit-builtin-decl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Sema/implicit-builtin-decl.c b/test/Sema/implicit-builtin-decl.c index 8cdd36518e..d7ec16953a 100644 --- a/test/Sema/implicit-builtin-decl.c +++ b/test/Sema/implicit-builtin-decl.c @@ -55,3 +55,5 @@ void snprintf() { } // PR8316 void longjmp(); // expected-warning{{declaration of built-in function 'longjmp' requires inclusion of the header <setjmp.h>}} + +extern float fmaxf(float, float); |