Mercurial > hg > CbC > CbC_llvm
view clang/test/Index/c-index-pch.c @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: c-index-test -write-pch %t.pch -x c %S/Inputs/c-index-pch.h // RUN: c-index-test -write-pch %t.ast -Xclang -include-pch -Xclang %t.pch -x c %s // RUN: c-index-test -test-load-tu %t.ast all | FileCheck -check-prefix=ALL %s // ALL: FunctionDecl=foo // ALL: VarDecl=bar // ALL: FunctionDecl=wibble // ALL: FunctionDecl=wonka void wibble(int i); void wonka(float);