brintos

brintos / llvm-project-archived public Read only

0
0
Text · 248 B · 8f44e61 Raw
10 lines · c
1// RUN: rm -f %t.pch2// RUN: %clang_cc1 -emit-pch -o %t.pch %S/Inputs/chain-decls1.h3// RUN: %clang_cc1 -include-pch %t.pch -fsyntax-only -MT %s.o -dependency-file - %s | FileCheck %s4// CHECK: chain-decls1.h5 6int main(void) {7  f();8  return 0;9}10