summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-21 17:20:18 +0000
committerChris Lattner <sabre@nondot.org>2009-07-21 17:20:18 +0000
commitecaf7dedd2546626d87633579c5c5bb55745a822 (patch)
tree1f08a1c03863578161775e90aa690bfc76522ad9 /llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp
parent33c70c9388b89c9f493d3ed9dc6120b4d95a5de0 (diff)
downloadbcm5719-llvm-ecaf7dedd2546626d87633579c5c5bb55745a822.tar.gz
bcm5719-llvm-ecaf7dedd2546626d87633579c5c5bb55745a822.zip
more random whitespace cleanup, eliminate #define, avoid copying
vectors needlessly, doxygenify comments, improve constness, etc. llvm-svn: 76585
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp')
-rw-r--r--llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp
index 084038d6dd8..b61f7747f3d 100644
--- a/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp
+++ b/llvm/lib/Target/PIC16/PIC16AsmPrinter.cpp
@@ -261,7 +261,7 @@ void PIC16AsmPrinter::EmitDefinedVars(Module &M) {
std::vector<const GlobalVariable*> Items = PTAI->ExternalVarDefs->Items;
if (!Items.size()) return;
- O << "\n" << TAI->getCommentString() << "Exported Variables - BEGIN" << "\n";
+ O << "\n" << TAI->getCommentString() << "Exported Variables - BEGIN" << "\n";
for (unsigned j = 0; j < Items.size(); j++) {
O << TAI->getGlobalDirective() << Mang->getMangledName(Items[j]) << "\n";
}
OpenPOWER on IntegriCloud