annotate clang/test/PCH/designated-init.c @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // Test this without pch.
anatofuz
parents:
diff changeset
2 // RUN: %clang_cc1 %s -include %s.h -emit-llvm -o %t.withoutpch.ll
anatofuz
parents:
diff changeset
3
anatofuz
parents:
diff changeset
4 // Test with pch.
anatofuz
parents:
diff changeset
5 // RUN: %clang_cc1 %s.h -emit-pch -o %t.pch
anatofuz
parents:
diff changeset
6 // RUN: %clang_cc1 %s -include-pch %t.pch -emit-llvm -o %t.withpch.ll
anatofuz
parents:
diff changeset
7 // RUN: diff %t.withoutpch.ll %t.withpch.ll