diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-03-08 01:23:49 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-03-08 01:23:49 +0000 |
commit | f3c43d14d948aed4648d23fa31efb4dfb1ecfc9c (patch) | |
tree | 509534ebb9c33c44c6d211049ea8001256970def /debuginfo-tests | |
parent | 8b466d5474b3b0872a23f4873813e9b6ddd4415b (diff) | |
download | bcm5719-llvm-f3c43d14d948aed4648d23fa31efb4dfb1ecfc9c.tar.gz bcm5719-llvm-f3c43d14d948aed4648d23fa31efb4dfb1ecfc9c.zip |
Experimentally enable --verify-debug-info on some testcases and see if
the buildbots can take it.
llvm-svn: 203327
Diffstat (limited to 'debuginfo-tests')
-rw-r--r-- | debuginfo-tests/dbg-arg.c | 2 | ||||
-rw-r--r-- | debuginfo-tests/sret.cpp | 2 |
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 |