diff options
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 71354ea4345..f433c4b6c90 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -1395,8 +1395,7 @@ MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI,      --N; -    MachineOperandIteratorBase::PhysRegInfo Info = -        ConstMIOperands(*I).analyzePhysReg(Reg, TRI); +    PhysRegInfo Info = AnalyzePhysRegInBundle(*I, Reg, TRI);      // Register is live when we read it here.      if (Info.Read) @@ -1434,8 +1433,7 @@ MachineBasicBlock::computeRegisterLiveness(const TargetRegisterInfo *TRI,        --N; -      MachineOperandIteratorBase::PhysRegInfo Info = -          ConstMIOperands(*I).analyzePhysReg(Reg, TRI); +      PhysRegInfo Info = AnalyzePhysRegInBundle(*I, Reg, TRI);        // Defs happen after uses so they take precedence if both are present.  | 

