R600/SI: Fix live range error hidden by SIFoldOperands
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Wed, 3 Dec 2014 05:22:29 +0000 (05:22 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Wed, 3 Dec 2014 05:22:29 +0000 (05:22 +0000)
commit84e23e08f189ca13d1cbb576f5f1f395c6987ac4
tree4c27aeb6daaa3224c0fd364c87badbb5b39ce4be
parentba2915d05c0b2dd1ae6c26b59f1dc2c5c75661ba
R600/SI: Fix live range error hidden by SIFoldOperands

m0 is treated as a virtual register class with a single register
rather than the physical register it really is. This was updating
the live range of the used virtual copy of m0 from the first ds_read
instruction, and leaving the unused copy unchanged. This resulted in a
"Live segment doesn't end at a valid instruction" verifier error because
the erased instructions. Update the live range of the second copy (which
should be dead).

No test since I'm not sure how to trigger this with SIFoldOperands
enabled.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223203 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/R600/SILoadStoreOptimizer.cpp