diff options
author | Reid Kleckner <rnk@google.com> | 2016-08-15 22:54:26 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2016-08-15 22:54:26 +0000 |
commit | a7b04a589e9dd0b27cb84da4ee85801e23ba5de5 (patch) | |
tree | d256ccadda8684cd535029af74cae574eebe8037 | |
parent | df77a4dbb01ac18e63409f6f3ec7b0d878a4a39e (diff) | |
download | bcm5719-llvm-a7b04a589e9dd0b27cb84da4ee85801e23ba5de5.tar.gz bcm5719-llvm-a7b04a589e9dd0b27cb84da4ee85801e23ba5de5.zip |
Don't use %llc_dwarf with -mtriple, they don't combine
llvm-svn: 278758
-rw-r--r-- | llvm/test/DebugInfo/X86/debug-loc-frame.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/DebugInfo/X86/debug-loc-frame.ll b/llvm/test/DebugInfo/X86/debug-loc-frame.ll index a4ab0cb0116..9a6b6aa46d5 100644 --- a/llvm/test/DebugInfo/X86/debug-loc-frame.ll +++ b/llvm/test/DebugInfo/X86/debug-loc-frame.ll @@ -3,7 +3,7 @@ ; Check that when variables are allocated on the stack we generate debug locations ; for the stack location directly instead of generating a register+offset indirection. -; RUN: %llc_dwarf -O2 -filetype=obj -disable-post-ra -mtriple=x86_64-unknown-linux-gnu < %s \ +; RUN: llc -O2 -filetype=obj -disable-post-ra -mtriple=x86_64-unknown-linux-gnu < %s \ ; RUN: | llvm-dwarfdump - | FileCheck %s ; ; int data = 17; |