1 // RUN: %clang_cc1 -emit-pch -x c++-header %s -o %t.pch 2 // RUN: %clang_cc1 -emit-llvm -DMAIN -include-pch %t.pch %s -o /dev/null 3 4 #ifndef MAIN foo()5 __attribute__((optnone)) void foo() {} 6 #endif 7