diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-07-01 01:00:22 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-07-01 01:00:22 +0000 |
commit | 4721ad855eceed332004a08b081e60e16d75ee2a (patch) | |
tree | afb2883fd9a24525b2878970fdc46c6ccf28d53c /llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp | |
parent | a343430e004bcfeeb3d60e794ac31b44f466d3bb (diff) | |
download | bcm5719-llvm-4721ad855eceed332004a08b081e60e16d75ee2a.tar.gz bcm5719-llvm-4721ad855eceed332004a08b081e60e16d75ee2a.zip |
Trailing whitespace.
llvm-svn: 107360
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp index f92127f2274..c8a63cf2393 100644 --- a/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp @@ -52,13 +52,13 @@ static void EmitCamlGlobal(const Module &M, AsmPrinter &AP, const char *Id) { SymName.append(MId.begin(), std::find(MId.begin(), MId.end(), '.')); SymName += "__"; SymName += Id; - + // Capitalize the first letter of the module name. SymName[Letter] = toupper(SymName[Letter]); - + SmallString<128> TmpStr; AP.Mang->getNameWithPrefix(TmpStr, SymName); - + MCSymbol *Sym = AP.OutContext.GetOrCreateSymbol(TmpStr); AP.OutStreamer.EmitSymbolAttribute(Sym, MCSA_Global); |