Fix indentation.

llvm-svn: 32066
This commit is contained in:
Evan Cheng 2006-12-01 07:17:00 +00:00
parent 1dfe5221c1
commit 5b43e8613e

View File

@ -291,8 +291,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
SwitchToDataSection("");
for (std::set<std::string>::iterator i = ExtWeakSymbols.begin(),
e = ExtWeakSymbols.end();
i != e; ++i) {
e = ExtWeakSymbols.end(); i != e; ++i) {
O << (Subtarget->isTargetDarwin() ? "\t.weak_reference" : "\t.weak")
<< " " << *i << "\n";
}