Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeCompletion / pch-and-module.m
blob8361448c3a7eb1788ff04e5d591be5ec5cef1ed8
1 #import "import_moduleA.h"
2 static const int FROM_IMPL = 2;
4 void test0(void) {
5   int x = 
7 // The lines above this point are sensitive to line/column changes.
9 // ===--- None
10 // RUN: c-index-test -code-completion-at=%s:5:11 %s -I %S/Inputs | FileCheck %s
12 // ===--- Modules
13 // RUN: rm -rf %t && mkdir %t
14 // RUN: c-index-test -code-completion-at=%s:5:11 %s -I %S/Inputs -fmodules -fmodules-cache-path=%t/mcp | FileCheck %s
16 // ===--- PCH
17 // RUN: rm -rf %t && mkdir %t
18 // RUN: c-index-test -write-pch %t/import_moduleA.pch -x objective-c-header %S/Inputs/import_moduleA.h -I %S/Inputs
19 // RUN: c-index-test -code-completion-at=%s:5:11 %s -include-pch %t/import_moduleA.pch -I %S/Inputs | FileCheck %s
21 // ===--- PCH + Modules
22 // RUN: rm -rf %t && mkdir %t
23 // RUN: c-index-test -write-pch %t/import_moduleA.pch -x objective-c-header %S/Inputs/import_moduleA.h -fmodules -fmodules-cache-path=%t/mcp -I %S/Inputs
24 // RUN: c-index-test -code-completion-at=%s:5:11 %s -include-pch %t/import_moduleA.pch -I %S/Inputs -fmodules -fmodules-cache-path=%t/mcp | FileCheck %s
26 // ===--- Preamble
27 // RUN: rm -rf %t && mkdir %t
28 // RUN: env CINDEXTEST_EDITING=1 c-index-test -code-completion-at=%s:5:11 %s -I %S/Inputs | FileCheck %s
30 // ===--- Preamble + Modules
31 // RUN: rm -rf %t
32 // RUN: env CINDEXTEST_EDITING=1 c-index-test -code-completion-at=%s:5:11 %s -I %S/Inputs -fmodules -fmodules-cache-path=%t/mcp | FileCheck %s
35 // CHECK: FROM_HEADER
36 // CHECK: FROM_IMPL
37 // CHECK: FROM_MODULE_A