code cleanup

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78432 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-08-07 23:42:01 +00:00
parent fadf13128f
commit 5f51cd0579

View File

@ -1687,27 +1687,25 @@ GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) {
} }
/// EmitComments - Pretty-print comments for instructions /// EmitComments - Pretty-print comments for instructions
void AsmPrinter::EmitComments(const MachineInstr &MI) const void AsmPrinter::EmitComments(const MachineInstr &MI) const {
{ if (!VerboseAsm ||
if (VerboseAsm) { MI.getDebugLoc().isUnknown())
if (!MI.getDebugLoc().isUnknown()) { return;
DebugLocTuple DLT = MF->getDebugLocTuple(MI.getDebugLoc());
DebugLocTuple DLT = MF->getDebugLocTuple(MI.getDebugLoc());
// Print source line info // Print source line info
O.PadToColumn(TAI->getCommentColumn(), 1); O.PadToColumn(TAI->getCommentColumn(), 1);
O << TAI->getCommentString() << " SrcLine "; O << TAI->getCommentString() << " SrcLine ";
if (DLT.CompileUnit->hasInitializer()) { if (DLT.CompileUnit->hasInitializer()) {
Constant *Name = DLT.CompileUnit->getInitializer(); Constant *Name = DLT.CompileUnit->getInitializer();
if (ConstantArray *NameString = dyn_cast<ConstantArray>(Name)) if (ConstantArray *NameString = dyn_cast<ConstantArray>(Name))
if (NameString->isString()) { if (NameString->isString())
O << NameString->getAsString() << " "; O << NameString->getAsString() << " ";
}
}
O << DLT.Line;
if (DLT.Col != 0)
O << ":" << DLT.Col;
}
} }
O << DLT.Line;
if (DLT.Col != 0)
O << ":" << DLT.Col;
} }
/// EmitComments - Pretty-print comments for instructions /// EmitComments - Pretty-print comments for instructions