[cfe-commits] r143806 - /cfe/trunk/test/Preprocessor/header_lookup1.c

Chandler Carruth chandlerc at gmail.com
Sat Nov 5 03:15:34 PDT 2011


Author: chandlerc
Date: Sat Nov  5 05:15:33 2011
New Revision: 143806

URL: http://llvm.org/viewvc/llvm-project?rev=143806&view=rev
Log:
Change this test to reflect the state we are moving in. The Clang
builtin headers are no longer going to receive the old 'implicit extern
"C" block' semantics. This hint is actually ignored by both Clang and
GCC at this point, and Clang's own builtin headers can simply be changed
if there is any issue with this. Clang should be free to include these
however it wants, and so shorter and simpler is better.

Note: *nothing* is changing about the *system* stddef.h include. That
should always have the exact same include semantics, whether with Clang
or GCC or any other compiler. Only the compiler-builtin header search
path is changing.

If anyone knows of some risk that this introduces that I've not thought
of, please chime in. So far, only Windows has switched to the Brave New
World, but others should be switching soon.

Modified:
    cfe/trunk/test/Preprocessor/header_lookup1.c

Modified: cfe/trunk/test/Preprocessor/header_lookup1.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Preprocessor/header_lookup1.c?rev=143806&r1=143805&r2=143806&view=diff
==============================================================================
--- cfe/trunk/test/Preprocessor/header_lookup1.c (original)
+++ cfe/trunk/test/Preprocessor/header_lookup1.c Sat Nov  5 05:15:33 2011
@@ -1,2 +1,2 @@
-// RUN: %clang -fno-ms-extensions %s -E | grep 'stddef.h.*3.*4'
+// RUN: %clang -fno-ms-extensions %s -E | grep 'stddef.h.*3'
 #include <stddef.h>





More information about the cfe-commits mailing list