Mercurial > hg > CbC > CbC_llvm
annotate clang/test/PCH/designated-init.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 1 // Test this without pch. |
2 // RUN: %clang_cc1 %s -include %s.h -emit-llvm -o %t.withoutpch.ll | |
3 | |
4 // Test with pch. | |
5 // RUN: %clang_cc1 %s.h -emit-pch -o %t.pch | |
6 // RUN: %clang_cc1 %s -include-pch %t.pch -emit-llvm -o %t.withpch.ll | |
7 // RUN: diff %t.withoutpch.ll %t.withpch.ll |