Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Preprocessor / include-directive2.c
blobb1a9940b441203a4a27800c7dc4cfbe80476848b
1 // RUN: %clang_cc1 -ffreestanding -Eonly -verify %s
2 # define HEADER <stdarg.h>
4 # include HEADER
6 #include <limits.h> NON_EMPTY // expected-warning {{extra tokens at end of #include directive}}
8 // PR3916: these are ok.
9 #define EMPTY
10 #include <limits.h> EMPTY
11 #include HEADER EMPTY
13 // PR3916
14 #define FN limits.h>
15 #include <FN
17 #include <> // expected-error {{empty filename}}