Fix elf object definition.

llvm-svn: 33502
This commit is contained in:
Lauro Ramos Venancio 2007-01-25 20:11:04 +00:00
parent 7dccb7be86
commit a3788dc56b

View File

@ -725,7 +725,7 @@ bool ARMAsmPrinter::doFinalization(Module &M) {
if (const char *Directive = TAI->getHiddenDirective())
O << Directive << name << "\n";
if (Subtarget->isTargetELF())
O << "\t.type " << name << ",@object\n";
O << "\t.type " << name << ",%object\n";
if (C->isNullValue()) {
if (I->hasExternalLinkage()) {