diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2016-03-02 19:28:54 +0000 | 
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2016-03-02 19:28:54 +0000 | 
| commit | cbbaeb13074400ead830be88143c31e7aac3c01c (patch) | |
| tree | d55d8e042104532293a3a2d729f706fb0b318111 /clang/test | |
| parent | 65f9d9cd324fc12f8bf90fa67477e2ddd90803d6 (diff) | |
| download | bcm5719-llvm-cbbaeb13074400ead830be88143c31e7aac3c01c.tar.gz bcm5719-llvm-cbbaeb13074400ead830be88143c31e7aac3c01c.zip | |
Serialize `#pragma detect_mismatch`.
This is like r262493, but for pragma detect_mismatch instead of pragma comment.
The two pragmas have similar behavior, so use the same approach for both.
llvm-svn: 262506
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/PCH/pragma-detect_mismatch.c | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/clang/test/PCH/pragma-detect_mismatch.c b/clang/test/PCH/pragma-detect_mismatch.c new file mode 100644 index 00000000000..b6233ed8a4b --- /dev/null +++ b/clang/test/PCH/pragma-detect_mismatch.c @@ -0,0 +1,23 @@ +// Test this without pch. +// RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm -include %s -o - | FileCheck %s + +// Test with pch. +// RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-pch -o %t +// RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm -include-pch %t -o - | FileCheck %s + +// The first run line creates a pch, and since at that point HEADER is not +// defined, the only thing contained in the pch is the pragma. The second line +// then includes that pch, so HEADER is defined and the actual code is compiled. +// The check then makes sure that the pragma is in effect in the file that +// includes the pch. + +#ifndef HEADER +#define HEADER +#pragma detect_mismatch("FruitKind", "Jaboticaba") + +#else + +// CHECK: "/DEFAULTLIB:foo.lib" +// CHECK: "/FAILIFMISMATCH:\22FruitKind=Jaboticaba\22" + +#endif | 

