mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 07:24:25 +00:00
When setting the "unused" info, take into account something like this:
%r3<def> = OR %x3<kill>, %x3 We don't want to mark the %r3 as unused even though it's a sub-register of %x3. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48003 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -98,7 +98,7 @@ public:
|
||||
///
|
||||
void setUsed(unsigned Reg);
|
||||
void setUsed(BitVector Regs) { RegsAvailable &= ~Regs; }
|
||||
void setUnused(unsigned Reg);
|
||||
void setUnused(unsigned Reg, const MachineInstr *MI);
|
||||
void setUnused(BitVector Regs) { RegsAvailable |= Regs; }
|
||||
|
||||
/// FindUnusedReg - Find a unused register of the specified register class
|
||||
|
Reference in New Issue
Block a user