f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
10 lines
409 B
C
10 lines
409 B
C
// RUN: %clang_cc1 -emit-pch -o %t1 -detailed-preprocessing-record %S/Inputs/chain-macro1.h
|
|
// RUN: %clang_cc1 -emit-pch -o %t2 -detailed-preprocessing-record %S/Inputs/chain-macro2.h -include-pch %t1
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -include-pch %t2 %s
|
|
// RUN: %clang_cc1 -ast-print -include-pch %t2 %s | FileCheck %s
|
|
// expected-no-diagnostics
|
|
|
|
// CHECK: void f();
|
|
FOOBAR
|
|
// CHECK: void g();
|
|
BARFOO
|