forked from OSchip/llvm-project
[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
This commit is contained in:
parent
cbd86d8429
commit
7d55dd673b
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue