clang-1/test/Misc
Chris Lattner 3936024941 Fix rdar://6814950 - stdint.h isn't "-pedantic -std=c89" clean,
by marking the predefines buffer as a system header.  The problem 
with stdint is that it was getting problems like this:

/Volumes/Projects/cvs/llvm/Debug/lib/clang/1.0/include/stdint.h:43:9: warning: 'long long' is an extension when C99 mode is not enabled
typedef __INT64_TYPE__ int64_t;
        ^
<built-in>:73:29: note: instantiated from:
#define __INT64_TYPE__ long long
                            ^

We correctly silence warnings in system headers, but only if the 
spelling location of the token came from the system header.  This is
designed so that if you use a system macro in your code that you don't
get punished for its definition.  This is all cool except that the 
predefines buffer wasn't considered a system header.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69770 91177308-0d34-0410-b5e6-96231b3b80d8
2009-04-22 03:42:19 +00:00
..
caret-diags.c Rename clang to clang-cc. 2009-03-24 02:24:46 +00:00
diag-checker.c Rename clang to clang-cc. 2009-03-24 02:24:46 +00:00
diag-mapping.c add another sanity check for -Werror=xx 2009-04-15 07:05:12 +00:00
diag-mapping2.c arrange for -Wno-error=foo warnings to be immune to -Werror as 2009-04-16 04:32:54 +00:00
emit-html.c Rename clang to clang-cc. 2009-03-24 02:24:46 +00:00
predefines.c Fix rdar://6814950 - stdint.h isn't "-pedantic -std=c89" clean, 2009-04-22 03:42:19 +00:00