summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2014-03-08 01:23:49 +0000
committerAdrian Prantl <aprantl@apple.com>2014-03-08 01:23:49 +0000
commit84824b4e12a3963b1139b5d39ebda5577810d4a0 (patch)
treec96c2a270c5c54db1aa7cf5a87c1ba0ee8bdc54e
parent9d7ae863fede17c172125ff70699a2a6aa2560e5 (diff)
Experimentally enable --verify-debug-info on some testcases and see if
the buildbots can take it.
-rw-r--r--debuginfo-tests/dbg-arg.c2
-rw-r--r--debuginfo-tests/sret.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/debuginfo-tests/dbg-arg.c b/debuginfo-tests/dbg-arg.c
index 02fcbf34b1b..831ac93355c 100644
--- a/debuginfo-tests/dbg-arg.c
+++ b/debuginfo-tests/dbg-arg.c
@@ -1,5 +1,5 @@
// This test case checks debug info during register moves for an argument.
-// RUN: %clang -arch x86_64 -mllvm -fast-isel=false %s -c -o %t.o
+// RUN: %clang --verify-debug-info -arch x86_64 -mllvm -fast-isel=false %s -c -o %t.o
// RUN: %clang -arch x86_64 %t.o -o %t.out
// RUN: %test_debuginfo %s %t.out
//
diff --git a/debuginfo-tests/sret.cpp b/debuginfo-tests/sret.cpp
index 4c46c3d0962..a4fdee46e81 100644
--- a/debuginfo-tests/sret.cpp
+++ b/debuginfo-tests/sret.cpp
@@ -1,4 +1,4 @@
-// RUN: %clangxx -O0 -g %s -c -o %t.o
+// RUN: %clangxx --verify-debug-info -O0 -g %s -c -o %t.o
// RUN: %clangxx %t.o -o %t.out
// RUN: %test_debuginfo %s %t.out
// Radar 8775834