Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions llvm/include/llvm/CodeGen/MachineBasicBlock.h
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@ class MachineBasicBlock
using pointer = const RegisterMaskPair *;
using reference = const RegisterMaskPair &;

liveout_iterator(const MachineBasicBlock &MBB, MCPhysReg ExceptionPointer,
MCPhysReg ExceptionSelector, bool End)
liveout_iterator(const MachineBasicBlock &MBB, MCRegister ExceptionPointer,
MCRegister ExceptionSelector, bool End)
: ExceptionPointer(ExceptionPointer),
ExceptionSelector(ExceptionSelector), BlockI(MBB.succ_begin()),
BlockEnd(MBB.succ_end()) {
Expand Down Expand Up @@ -613,7 +613,7 @@ class MachineBasicBlock
return true;
}

MCPhysReg ExceptionPointer, ExceptionSelector;
MCRegister ExceptionPointer, ExceptionSelector;
const_succ_iterator BlockI;
const_succ_iterator BlockEnd;
livein_iterator LiveRegI;
Expand Down