Fix elf object definition.

llvm-svn: 33502
This commit is contained in:
Lauro Ramos Venancio 2007-01-25 20:11:04 +00:00
parent 417260dc11
commit 4f7d37fe04
1 changed files with 1 additions and 1 deletions

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()) {