diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-01-17 18:35:14 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-01-17 18:35:14 +0000 |
| commit | 032ef2dc0066e159ec3f78801064bbddc15f25fd (patch) | |
| tree | dd358c9cb4f472bf6d72b1c1b327692bcae963ec | |
| parent | fb877cb9f2cb11b484e309edfc8fb9be552baf51 (diff) | |
| download | bcm5719-llvm-032ef2dc0066e159ec3f78801064bbddc15f25fd.tar.gz bcm5719-llvm-032ef2dc0066e159ec3f78801064bbddc15f25fd.zip | |
[Test] Fix debug-loc-0.mir with EXPENSIVE_CHECKS
The `llc` invocation was missing `-start-before=machine-cp`.
llvm-svn: 351464
| -rw-r--r-- | llvm/test/DebugInfo/MIR/X86/debug-loc-0.mir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/DebugInfo/MIR/X86/debug-loc-0.mir b/llvm/test/DebugInfo/MIR/X86/debug-loc-0.mir index 4bc2d35d1cf..3fb1e0ba71a 100644 --- a/llvm/test/DebugInfo/MIR/X86/debug-loc-0.mir +++ b/llvm/test/DebugInfo/MIR/X86/debug-loc-0.mir @@ -1,6 +1,6 @@ # Check that subsequent .loc 0 0 directives are collapsed. -# RUN: llc -O2 -filetype=asm -mtriple=x86_64-apple-macosx10.9.0 -o - %s | FileCheck %s +# RUN: llc -start-before=machine-cp -O2 -filetype=asm -mtriple=x86_64-apple-macosx10.9.0 -o - %s | FileCheck %s # CHECK: Ltmp0: # CHECK: .loc 1 0 0 prologue_end |

