diff options
author | Filipe Cabecinhas <me@filcab.net> | 2014-10-18 23:47:59 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2014-10-18 23:47:59 +0000 |
commit | 090a237f2981d7059073439f4fe159cbd7ab3389 (patch) | |
tree | f4bec8744787c52f6cff9f8873bce504bb8aa1b1 /debuginfo-tests/dbg-arg.c | |
parent | 38e98d5782b24b6cfcdd7651ebb4eff547cf2619 (diff) | |
download | bcm5719-llvm-090a237f2981d7059073439f4fe159cbd7ab3389.tar.gz bcm5719-llvm-090a237f2981d7059073439f4fe159cbd7ab3389.zip |
New round of fixes for "Always compile debuginfo-tests for the host triple"
clang tests were breaking, at least when compiling clang only, from an
installed llvm. Make the lit.cfg script deal with the case when we don't
have a host_triple available.
llvm-svn: 220152
Diffstat (limited to 'debuginfo-tests/dbg-arg.c')
-rw-r--r-- | debuginfo-tests/dbg-arg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debuginfo-tests/dbg-arg.c b/debuginfo-tests/dbg-arg.c index e7acaa8e64a..26de4e5732c 100644 --- a/debuginfo-tests/dbg-arg.c +++ b/debuginfo-tests/dbg-arg.c @@ -1,6 +1,6 @@ // This test case checks debug info during register moves for an argument. -// RUN: %clang --target=%itanium_abi_host_triple -arch x86_64 -mllvm -fast-isel=false %s -c -o %t.o -// RUN: %clang --target=%itanium_abi_host_triple -arch x86_64 %t.o -o %t.out +// RUN: %clang %target_itanium_abi_host_triple -arch x86_64 -mllvm -fast-isel=false %s -c -o %t.o +// RUN: %clang %target_itanium_abi_host_triple -arch x86_64 %t.o -o %t.out // RUN: %test_debuginfo %s %t.out // // Radar 8412415 |