We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e00afc commit e523f4eCopy full SHA for e523f4e
llvm/include/llvm/CodeGen/VirtRegMap.h
@@ -59,7 +59,7 @@ class TargetInstrInfo;
59
60
/// Virt2SplitMap - This is virtual register to splitted virtual register
61
/// mapping.
62
- IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2SplitMap;
+ IndexedMap<Register, VirtReg2IndexFunctor> Virt2SplitMap;
63
64
/// Virt2ShapeMap - For X86 AMX register whose register is bound shape
65
/// information.
@@ -73,7 +73,7 @@ class TargetInstrInfo;
73
74
VirtRegMap()
75
: MachineFunctionPass(ID), Virt2PhysMap(NO_PHYS_REG),
76
- Virt2StackSlotMap(NO_STACK_SLOT), Virt2SplitMap(0) {}
+ Virt2StackSlotMap(NO_STACK_SLOT) {}
77
VirtRegMap(const VirtRegMap &) = delete;
78
VirtRegMap &operator=(const VirtRegMap &) = delete;
79
0 commit comments