mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-25 17:20:48 +00:00
Now that DBG_LABEL is updated, we can finally make MachineMove
contain an MCSymbol instead of a label index. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98482 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -31,7 +31,7 @@ private:
|
||||
int LRSpillSlot;
|
||||
int FPSpillSlot;
|
||||
int VarArgsFrameIndex;
|
||||
std::vector<std::pair<unsigned, CalleeSavedInfo> > SpillLabels;
|
||||
std::vector<std::pair<MCSymbol*, CalleeSavedInfo> > SpillLabels;
|
||||
|
||||
public:
|
||||
XCoreFunctionInfo() :
|
||||
@@ -60,7 +60,7 @@ public:
|
||||
void setFPSpillSlot(int off) { FPSpillSlot = off; }
|
||||
int getFPSpillSlot() const { return FPSpillSlot; }
|
||||
|
||||
std::vector<std::pair<unsigned, CalleeSavedInfo> >&getSpillLabels() {
|
||||
std::vector<std::pair<MCSymbol*, CalleeSavedInfo> > &getSpillLabels() {
|
||||
return SpillLabels;
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user