mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-17 08:36:52 +00:00
Rename a variable to make MSVC happy.
llvm-svn: 78202
This commit is contained in:
parent
3eba9b1f16
commit
f4e8fdcdd5
@ -808,9 +808,9 @@ void SimpleRegisterCoalescing::RemoveUnnecessaryKills(unsigned Reg,
|
||||
continue;
|
||||
MachineInstr *UseMI = UseMO.getParent();
|
||||
unsigned UseIdx = li_->getUseIndex(li_->getInstructionIndex(UseMI));
|
||||
const LiveRange *UI = LI.getLiveRangeContaining(UseIdx);
|
||||
if (!UI || !LI.isKill(UI->valno, UseIdx+1)) {
|
||||
if (UI->valno->def != UseIdx+1) {
|
||||
const LiveRange *LR = LI.getLiveRangeContaining(UseIdx);
|
||||
if (!LR || !LI.isKill(LR->valno, UseIdx+1)) {
|
||||
if (LR->valno->def != UseIdx+1) {
|
||||
// Interesting problem. After coalescing reg1027's def and kill are both
|
||||
// at the same point: %reg1027,0.000000e+00 = [56,814:0) 0@70-(814)
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user