diff options
Diffstat (limited to 'test/Sema/implicit-builtin-decl.c')
-rw-r--r-- | test/Sema/implicit-builtin-decl.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/Sema/implicit-builtin-decl.c b/test/Sema/implicit-builtin-decl.c index 3d92038..d80414d 100644 --- a/test/Sema/implicit-builtin-decl.c +++ b/test/Sema/implicit-builtin-decl.c @@ -18,11 +18,11 @@ void g(int malloc) { // okay: these aren't functions void h() { int malloc(int); // expected-warning{{incompatible redeclaration of library function 'malloc'}} int strcpy(int); // expected-warning{{incompatible redeclaration of library function 'strcpy'}} \ - // expected-note{{'strcpy' is a builtin with type 'char *(char *, char const *)'}} + // expected-note{{'strcpy' is a builtin with type 'char *(char *, const char *)'}} } void f2() { - fprintf(0, "foo"); // expected-error{{implicit declaration of 'fprintf' requires inclusion of the header <stdio.h>}} \ + fprintf(0, "foo"); // expected-warning{{declaration of built-in function 'fprintf' requires inclusion of the header <stdio.h>}} \ expected-warning {{implicit declaration of function 'fprintf' is invalid in C99}} } @@ -52,3 +52,6 @@ main(int argc, char *argv[]) } void snprintf() { } + +// PR8316 +void longjmp(); // expected-warning{{declaration of built-in function 'longjmp' requires inclusion of the header <setjmp.h>}} |