forked from OSchip/llvm-project
use %object like other elf targets, gas accepts either.
llvm-svn: 93857
This commit is contained in:
parent
9d749a2fc4
commit
f75fe9e34c
|
@ -348,7 +348,7 @@ void SparcAsmPrinter::PrintGlobalVariable(const GlobalVariable* GVar) {
|
|||
EmitAlignment(Align, GVar);
|
||||
|
||||
if (MAI->hasDotTypeDotSizeDirective()) {
|
||||
O << "\t.type " << *GVarSym << ",#object\n";
|
||||
O << "\t.type " << *GVarSym << ",%object\n";
|
||||
O << "\t.size " << *GVarSym << ',' << Size << '\n';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue