- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
22 lines
330 B
C
22 lines
330 B
C
// RUN: %clang_cc1 %s -Eonly -Werror=undef -verify
|
|
// RUN: %clang_cc1 %s -Eonly -Werror-undef -verify
|
|
|
|
extern int x;
|
|
|
|
#if foo // expected-error {{'foo' is not defined, evaluates to 0}}
|
|
#endif
|
|
|
|
#ifdef foo
|
|
#endif
|
|
|
|
#if defined(foo)
|
|
#endif
|
|
|
|
|
|
// PR3938
|
|
#if 0
|
|
#ifdef D
|
|
#else 1 // Should not warn due to C99 6.10p4
|
|
#endif
|
|
#endif
|