diff options
Diffstat (limited to 'llvm/lib/Target/X86/X86InstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp index ae45301f04b..fe26389050c 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.cpp +++ b/llvm/lib/Target/X86/X86InstrInfo.cpp @@ -2550,7 +2550,7 @@ void X86InstrInfo::replaceBranchWithTailCall( // call. This way they still appear live across the call. LivePhysRegs LiveRegs(getRegisterInfo()); LiveRegs.addLiveOuts(MBB); - SmallVector<std::pair<unsigned, const MachineOperand *>, 8> Clobbers; + SmallVector<std::pair<MCPhysReg, const MachineOperand *>, 8> Clobbers; LiveRegs.stepForward(*MIB, Clobbers); for (const auto &C : Clobbers) { MIB.addReg(C.first, RegState::Implicit); |