mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Revert "Liveness Analysis Pass"
This reverts commit r197254. This was an accidental merge of Juergen's patch. It will be checked in shortly, but wasn't meant to go in quite yet. Conflicts: include/llvm/CodeGen/StackMaps.h lib/CodeGen/StackMaps.cpp test/CodeGen/X86/stackmap-liveness.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197260 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -426,15 +426,6 @@ public:
|
||||
OperandRecycler.deallocate(Cap, Array);
|
||||
}
|
||||
|
||||
/// \brief Allocate and initialize a register mask with @p NumRegister bits.
|
||||
uint32_t *allocateRegisterMask(unsigned NumRegister) {
|
||||
unsigned Size = (NumRegister + 31) / 32;
|
||||
uint32_t *Mask = Allocator.Allocate<uint32_t>(Size);
|
||||
for (unsigned i = 0; i != Size; ++i)
|
||||
Mask[i] = 0;
|
||||
return Mask;
|
||||
}
|
||||
|
||||
/// allocateMemRefsArray - Allocate an array to hold MachineMemOperand
|
||||
/// pointers. This array is owned by the MachineFunction.
|
||||
MachineInstr::mmo_iterator allocateMemRefsArray(unsigned long Num);
|
||||
|
Reference in New Issue
Block a user