mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
Fix crazy indentation
llvm-svn: 22380
This commit is contained in:
parent
d710b0a025
commit
af83621722
@ -48,15 +48,15 @@ bool X86SharedAsmPrinter::doInitialization(Module& M) {
|
||||
TT.find("mingw") != std::string::npos;
|
||||
forDarwin = TT.find("darwin") != std::string::npos;
|
||||
} else if (TT.empty()) {
|
||||
#if defined(__CYGWIN__) || defined(__MINGW32__)
|
||||
#if defined(__CYGWIN__) || defined(__MINGW32__)
|
||||
forCygwin = true;
|
||||
#elif defined(__APPLE__)
|
||||
#elif defined(__APPLE__)
|
||||
forDarwin = true;
|
||||
#elif defined(_WIN32)
|
||||
#elif defined(_WIN32)
|
||||
leadingUnderscore = true;
|
||||
#else
|
||||
#else
|
||||
leadingUnderscore = false;
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
if (leadingUnderscore || forCygwin || forDarwin)
|
||||
GlobalPrefix = "_";
|
||||
@ -95,7 +95,8 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
|
||||
std::string CurSection;
|
||||
|
||||
// Print out module-level global variables here.
|
||||
for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
|
||||
for (Module::const_global_iterator I = M.global_begin(),
|
||||
E = M.global_end(); I != E; ++I)
|
||||
if (I->hasInitializer()) { // External global require no code
|
||||
O << "\n\n";
|
||||
std::string name = Mang->getValueName(I);
|
||||
@ -120,6 +121,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
|
||||
O << "\n";
|
||||
} else {
|
||||
switch (I->getLinkage()) {
|
||||
default: assert(0 && "Unknown linkage type!");
|
||||
case GlobalValue::LinkOnceLinkage:
|
||||
case GlobalValue::WeakLinkage: // FIXME: Verify correct for weak.
|
||||
// Nonnull linkonce -> weak
|
||||
@ -140,9 +142,6 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
|
||||
else
|
||||
SwitchSection(O, CurSection, ".data");
|
||||
break;
|
||||
case GlobalValue::GhostLinkage:
|
||||
std::cerr << "GhostLinkage cannot appear in X86AsmPrinter!\n";
|
||||
abort();
|
||||
}
|
||||
|
||||
emitAlignment(Align);
|
||||
@ -163,8 +162,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
|
||||
// Output stubs for dynamically-linked functions
|
||||
unsigned j = 1;
|
||||
for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
|
||||
i != e; ++i, ++j)
|
||||
{
|
||||
i != e; ++i, ++j) {
|
||||
O << "\t.symbol_stub\n";
|
||||
O << "L" << *i << "$stub:\n";
|
||||
O << "\t.indirect_symbol " << *i << "\n";
|
||||
|
Loading…
Reference in New Issue
Block a user