Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Preprocessor / include-directive1.c
blob20f45829eebb7a08bc6eb305becfc840ed4592e6
1 // RUN: %clang_cc1 -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3
3 // XX expands to nothing.
4 #define XX
6 // expand macros to get to file to include
7 #define FILE "file_to_include.h"
8 #include XX FILE
10 #include FILE
12 // normal include
13 #include "file_to_include.h"