mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-02 09:33:59 +00:00
remove another form of EmitReference.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97998 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c7249da2e9
commit
326861c4c8
@ -236,7 +236,7 @@ void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
|
||||
|
||||
EOL("FDE CIE offset");
|
||||
|
||||
EmitReference("eh_func_begin", EHFrameInfo.Number, FDEEncoding);
|
||||
EmitReference(getDWLabel("eh_func_begin", EHFrameInfo.Number), FDEEncoding);
|
||||
EOL("FDE initial location");
|
||||
EmitDifference("eh_func_end", EHFrameInfo.Number,
|
||||
"eh_func_begin", EHFrameInfo.Number,
|
||||
@ -250,7 +250,7 @@ void DwarfException::EmitFDE(const FunctionEHFrameInfo &EHFrameInfo) {
|
||||
|
||||
EmitULEB128(Size, "Augmentation size");
|
||||
if (EHFrameInfo.hasLandingPads)
|
||||
EmitReference("exception", EHFrameInfo.Number, LSDAEncoding);
|
||||
EmitReference(getDWLabel("exception", EHFrameInfo.Number),LSDAEncoding);
|
||||
else
|
||||
Asm->OutStreamer.EmitIntValue(0, Size/*size*/, 0/*addrspace*/);
|
||||
|
||||
|
@ -241,12 +241,6 @@ void DwarfPrinter::EmitReference(const MCSymbol *Sym, bool IsPCRelative,
|
||||
if (IsPCRelative) O << "-" << MAI->getPCSymbol();
|
||||
}
|
||||
|
||||
void DwarfPrinter::EmitReference(const char *Tag, unsigned Number,
|
||||
unsigned Encoding) const {
|
||||
// FIXME: REMOVE.
|
||||
EmitReference(getDWLabel(Tag, Number), Encoding);
|
||||
}
|
||||
|
||||
void DwarfPrinter::EmitReference(const MCSymbol *Sym, unsigned Encoding) const {
|
||||
const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering();
|
||||
|
||||
@ -259,7 +253,7 @@ void DwarfPrinter::EmitReference(const GlobalValue *GV, unsigned Encoding)const
|
||||
|
||||
PrintRelDirective(Encoding);
|
||||
O << *TLOF.getSymbolForDwarfGlobalReference(GV, Asm->Mang,
|
||||
Asm->MMI, Encoding);;
|
||||
Asm->MMI, Encoding);
|
||||
}
|
||||
|
||||
/// EmitDifference - Emit the difference between two labels. If this assembler
|
||||
|
@ -134,7 +134,6 @@ public:
|
||||
void EmitReference(const MCSymbol *Label, bool IsPCRelative = false,
|
||||
bool Force32Bit = false) const;
|
||||
|
||||
void EmitReference(const char *Tag, unsigned Number, unsigned Encoding) const;
|
||||
void EmitReference(const MCSymbol *Sym, unsigned Encoding) const;
|
||||
void EmitReference(const GlobalValue *GV, unsigned Encoding) const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user