2010-07-30 08:29:29 +08:00
|
|
|
// Test this without pch.
|
2010-10-03 03:29:26 +08:00
|
|
|
// RUN: %clang_cc1 -include %S/Inputs/chain-macro-override1.h -include %S/Inputs/chain-macro-override2.h -fsyntax-only -verify -detailed-preprocessing-record %s
|
2010-07-30 08:29:29 +08:00
|
|
|
|
|
|
|
// Test with pch.
|
2010-10-03 03:29:26 +08:00
|
|
|
// RUN: %clang_cc1 -emit-pch -o %t1 %S/Inputs/chain-macro-override1.h -detailed-preprocessing-record
|
2011-08-26 06:54:01 +08:00
|
|
|
// RUN: %clang_cc1 -emit-pch -o %t2 %S/Inputs/chain-macro-override2.h -include-pch %t1 -detailed-preprocessing-record
|
2010-07-30 08:29:29 +08:00
|
|
|
// RUN: %clang_cc1 -include-pch %t2 -fsyntax-only -verify %s
|
|
|
|
|
2010-10-01 09:03:07 +08:00
|
|
|
int foo() {
|
2010-07-30 08:29:29 +08:00
|
|
|
f();
|
|
|
|
g();
|
|
|
|
h();
|
2012-10-10 07:05:51 +08:00
|
|
|
h2(); // expected-warning{{implicit declaration of function 'h2' is invalid in C99}}
|
|
|
|
h3();
|
2010-10-01 09:03:07 +08:00
|
|
|
return x;
|
2010-07-30 08:29:29 +08:00
|
|
|
}
|