Back out the new test test/CodeGen/X86/PR37310.mir, since it causes
check failures on one of the buildbots.
Details
- Reviewers
- None
- Commits
- rG3c639dbd0d1c: Revert changes from D46265.
rL332742: Revert changes from D46265.
Diff Detail
- Repository
- rL LLVM
Event Timeline
Failing buildbot run is:
http://lab.llvm.org:8011/builders/clang-cmake-x86_64-avx2-linux/builds/4445
I don't think that removing only the test (especially when there is only 1 test) is correct. You should probably either fix the test, or revert the entire commit and resubmit for review once you have fixed the test.
Under most circumstances I think I would agree -- for example, if the change in question were introducing some new functionality whose behavior needed to be locked down.
In this case, the change is to avoid an assert in cases where you have an IR insanity (statically unreachable code) that is being created by an upstream pass-- there is no new behavior/functionality that needs checking, simply adding an additional guard to insure that the compiler doesn't crash when it sees this unexpected IR.
With that said, I'll go ahead and revert the whole thing.