diff options
author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2018-10-25 14:11:07 +0000 |
---|---|---|
committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2018-10-25 14:11:07 +0000 |
commit | 7d55dd673bf5a9292d3ff550b9b088e5a941b246 (patch) | |
tree | e8ce6a7a3a59f32e8b1f281a01fd9778e8cadedc | |
parent | cbd86d842902da3581926ee4cd2d207b9d2d1e53 (diff) | |
download | bcm5719-llvm-7d55dd673bf5a9292d3ff550b9b088e5a941b246.tar.gz bcm5719-llvm-7d55dd673bf5a9292d3ff550b9b088e5a941b246.zip |
[X86] Fix llc invocation on MIR test case
The current state of the llc invocation is:
* Running all the passes from dwarfehprepare to stack coloring
(included)
* It runs it from the LLVM IR included in the file
* It *ADDS* the generated MI from ISel to the MI in the MIR file
* The machine verifier doesn't like it.
Differential Revision: https://reviews.llvm.org/D53698
llvm-svn: 345266
-rw-r--r-- | llvm/test/CodeGen/X86/PR37310.mir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/PR37310.mir b/llvm/test/CodeGen/X86/PR37310.mir index 37f400de2e7..6f09a8987eb 100644 --- a/llvm/test/CodeGen/X86/PR37310.mir +++ b/llvm/test/CodeGen/X86/PR37310.mir @@ -1,4 +1,4 @@ -# RUN: llc -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7 -start-before dwarfehprepare -no-stack-coloring=false -stop-after stack-coloring -o - %s +# RUN: llc -mtriple=x86_64-unknown-linux-gnu -mcpu=corei7 -no-stack-coloring=false -run-pass stack-coloring -o - %s # Test to insure that the liveness analysis in the StackColoring # pass gracefully handles statically unreachable blocks. See PR 37310. |