forked from OSchip/llvm-project
VirtRegMap - add missing initializers. NFCI.
llvm-svn: 366016
This commit is contained in:
parent
a3f9240bfb
commit
f66f5ff38a
|
@ -67,8 +67,10 @@ class TargetInstrInfo;
|
|||
public:
|
||||
static char ID;
|
||||
|
||||
VirtRegMap() : MachineFunctionPass(ID), Virt2PhysMap(NO_PHYS_REG),
|
||||
Virt2StackSlotMap(NO_STACK_SLOT), Virt2SplitMap(0) {}
|
||||
VirtRegMap()
|
||||
: MachineFunctionPass(ID), MRI(nullptr), TII(nullptr), TRI(nullptr),
|
||||
MF(nullptr), Virt2PhysMap(NO_PHYS_REG),
|
||||
Virt2StackSlotMap(NO_STACK_SLOT), Virt2SplitMap(0) {}
|
||||
VirtRegMap(const VirtRegMap &) = delete;
|
||||
VirtRegMap &operator=(const VirtRegMap &) = delete;
|
||||
|
||||
|
|
Loading…
Reference in New Issue