1 // Test this without pch.
2 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-llvm -include %s -o - | FileCheck %s
3 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm -include %s -o - | FileCheck %s
6 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-pch -o %t
7 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-llvm -include-pch %t -o - | FileCheck %s
8 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-pch -o %t
9 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm -include-pch %t -o - | FileCheck %s
11 // The first run line creates a pch, and since at that point HEADER is not
12 // defined, the only thing contained in the pch is the pragma. The second line
13 // then includes that pch, so HEADER is defined and the actual code is compiled.
14 // The check then makes sure that the pragma is in effect in the file that
19 #pragma detect_mismatch("FruitKind", "Jaboticaba")
23 // CHECK: "/FAILIFMISMATCH:\22FruitKind=Jaboticaba\22"