use %object like other elf targets, gas accepts either.

llvm-svn: 93857
This commit is contained in:
Chris Lattner 2010-01-19 05:25:38 +00:00
parent 9d749a2fc4
commit f75fe9e34c
1 changed files with 1 additions and 1 deletions

View File

@ -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';
}