diff options
Diffstat (limited to 'test/PCH/pragma-weak.c')
-rw-r--r-- | test/PCH/pragma-weak.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/PCH/pragma-weak.c b/test/PCH/pragma-weak.c index 18b45c8..1a8724c 100644 --- a/test/PCH/pragma-weak.c +++ b/test/PCH/pragma-weak.c @@ -1,9 +1,9 @@ // Test this without pch. -// RUN: %clang_cc1 -include %S/pragma-weak.h %s -verify -emit-llvm -o - | FileCheck %s +// RUN: not %clang_cc1 -include %S/pragma-weak.h %s -verify -emit-llvm -o - | FileCheck %s // Test with pch. // RUN: %clang_cc1 -x c-header -emit-pch -o %t %S/pragma-weak.h -// RUN: %clang_cc1 -include-pch %t %s -verify -emit-llvm -o - | FileCheck %s +// RUN: not %clang_cc1 -include-pch %t %s -verify -emit-llvm -o - | FileCheck %s // CHECK: @weakvar = weak global i32 0 int weakvar; |