Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Index / skip-parsed-bodies / t.h
bloba52b749d79a514fc05a4a95daf7294061e5790c1
1 #ifndef _T_H_
2 #define _T_H_
4 extern int some_val;
6 namespace NS {
7 class C {
8 void method_decl();
9 int method_def1() { ++some_val; return undef_val1; }
10 inline int method_def2();
14 inline int NS::C::method_def2() {
15 ++some_val; return undef_val2;
18 static inline int foo1() {
19 ++some_val; return undef_val3;
22 #ifdef BLAH
24 static inline int foo2() {
25 ++some_val; return undef_val4;
28 #endif
30 #endif