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