Mercurial > hg > CbC > CbC_llvm
annotate clang/test/PCH/chain-macro.c @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | c4bab56944e8 |
children |
rev | line source |
---|---|
150 | 1 // RUN: %clang_cc1 -emit-pch -o %t1 -detailed-preprocessing-record %S/Inputs/chain-macro1.h |
2 // RUN: %clang_cc1 -emit-pch -o %t2 -detailed-preprocessing-record %S/Inputs/chain-macro2.h -include-pch %t1 | |
3 // RUN: %clang_cc1 -fsyntax-only -verify -include-pch %t2 %s | |
4 // RUN: %clang_cc1 -ast-print -include-pch %t2 %s | FileCheck %s | |
5 // expected-no-diagnostics | |
6 | |
236 | 7 // CHECK: void f(void); |
150 | 8 FOOBAR |
236 | 9 // CHECK: void g(void); |
150 | 10 BARFOO |