This is an archive of the discontinued LLVM Phabricator instance.

[X86] Fix llc invocation on MIR test case
ClosedPublic

Authored by thegameg on Oct 25 2018, 6:44 AM.

Details

Summary

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.

Diff Detail

Repository
rL LLVM

Event Timeline

thegameg created this revision.Oct 25 2018, 6:44 AM
thanm added a comment.Oct 25 2018, 7:02 AM

LGTM. I ran the new recipe in the debugger and it is indeed exercising the PR37130 fix code correctly (lifetime marker set is different, but that doesn't matter in this case).

Thanks for the cleanup.

This revision was not accepted when it landed; it landed in state Needs Review.Oct 25 2018, 7:13 AM
This revision was automatically updated to reflect the committed changes.