aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-09-13 18:26:39 +0000
committerDouglas Gregor <dgregor@apple.com>2011-09-13 18:26:39 +0000
commit7d5e81bf24dbfd334a7c62a7ae51043c79a69aa9 (patch)
tree7fa299a801302ef70333df754223e2829d34af51 /test
parente87158dfbca01577810f301543c3cdcfc955d8b0 (diff)
Switch the serialization of LangOptions over to use the .def file. We
should no longer have the serialization of LangOptions out of sync with the structure itself (yay). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139613 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Modules/load_failure.c2
-rw-r--r--test/PCH/arc.m4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/Modules/load_failure.c b/test/Modules/load_failure.c
index 4685a41ef6..55e3d40a3f 100644
--- a/test/Modules/load_failure.c
+++ b/test/Modules/load_failure.c
@@ -14,6 +14,6 @@ __import_module__ load_failure;
// RUN: FileCheck -check-prefix=CHECK-FAILURE %s < %t
// FIXME: Clean up diagnostic text below and give it a location
-// CHECK-FAILURE: error: C99 support was disabled in PCH file but is currently enabled
+// CHECK-FAILURE: error: C99 was disabled in PCH file but is currently enabled
diff --git a/test/PCH/arc.m b/test/PCH/arc.m
index 84a8ccc24a..15e97a2922 100644
--- a/test/PCH/arc.m
+++ b/test/PCH/arc.m
@@ -13,5 +13,5 @@
array0 a0;
array1 a1;
-// CHECK-ERR1: PCH file was compiled with automated reference counting, which is currently disabled
-// CHECK-ERR2: PCH file was compiled without automated reference counting, which is currently enabled
+// CHECK-ERR1: Objective-C automated reference counting was enabled in PCH file but is currently disabled
+// CHECK-ERR2: Objective-C automated reference counting was disabled in PCH file but is currently enabled