mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 02:31:26 +00:00
emit ELF .type directives through MCStreamer instead of doing it textually.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94436 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ed0ab15170
commit
a800f7c464
@ -156,13 +156,8 @@ void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
|
||||
MCSymbol *GVSym = GetGlobalValueSymbol(GV);
|
||||
printVisibility(GVSym, GV->getVisibility());
|
||||
|
||||
if (MAI->hasDotTypeDotSizeDirective()) {
|
||||
O << "\t.type\t" << *GVSym;
|
||||
if (MAI->getCommentString()[0] != '@')
|
||||
O << ",@object\n";
|
||||
else
|
||||
O << ",%object\n";
|
||||
}
|
||||
if (MAI->hasDotTypeDotSizeDirective())
|
||||
OutStreamer.EmitSymbolAttribute(GVSym, MCSA_ELF_TypeObject);
|
||||
|
||||
SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, TM);
|
||||
|
||||
|
@ -234,7 +234,7 @@ void MCAsmStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
|
||||
case MCSA_ELF_TypeCommon: /// .type _foo, STT_COMMON # aka @common
|
||||
case MCSA_ELF_TypeNoType: /// .type _foo, STT_NOTYPE # aka @notype
|
||||
assert(MAI.hasDotTypeDotSizeDirective() && "Symbol Attr not supported");
|
||||
OS << ".type " << *Symbol << ','
|
||||
OS << "\t.type " << *Symbol << ','
|
||||
<< ((MAI.getCommentString()[0] != '@') ? '@' : '%');
|
||||
switch (Attribute) {
|
||||
default: assert(0 && "Unknown ELF .type");
|
||||
|
@ -106,7 +106,7 @@ void X86AsmPrinter::emitFunctionHeader(const MachineFunction &MF) {
|
||||
printVisibility(CurrentFnSym, F->getVisibility());
|
||||
|
||||
if (Subtarget->isTargetELF()) {
|
||||
O << "\t.type\t" << *CurrentFnSym << ",@function\n";
|
||||
OutStreamer.EmitSymbolAttribute(CurrentFnSym, MCSA_ELF_TypeFunction);
|
||||
} else if (Subtarget->isTargetCygMing()) {
|
||||
O << "\t.def\t " << *CurrentFnSym;
|
||||
O << ";\t.scl\t" <<
|
||||
|
Loading…
x
Reference in New Issue
Block a user