Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / Inputs / macros.h
bloba0ae7a3158220ed38d470f768d414b0dbe74dc50
1 #define MODULE
2 #define INTEGER(X) int
3 #define FLOAT float
4 #define DOUBLE double
6 #__public_macro INTEGER
7 #__private_macro FLOAT
8 #__private_macro MODULE
10 int (INTEGER);
12 #if !__building_module(macros)
13 # error Can't include this header without building the 'macros' module.
14 #endif
16 #ifdef __MODULE__
17 extern int __MODULE__;
18 #endif
20 #include "macros-indirect.h"