[PATCH] D53698: [X86] Fix llc invocation on MIR test case

Francis Visoiu Mistrih via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 25 06:46:26 PDT 2018


thegameg created this revision.
thegameg added a reviewer: thanm.
Herald added subscribers: JDevlieghere, aprantl.

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.


https://reviews.llvm.org/D53698

Files:
  test/CodeGen/X86/PR37310.mir


Index: test/CodeGen/X86/PR37310.mir
===================================================================
--- test/CodeGen/X86/PR37310.mir
+++ 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.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D53698.171082.patch
Type: text/x-patch
Size: 591 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181025/1a36ad54/attachment.bin>


More information about the llvm-commits mailing list