diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-22 22:09:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-22 22:09:00 +0000 |
commit | f5c834fce159386feb5cfa2f2758975fa1f7e6e8 (patch) | |
tree | 9ed9daf6f4d8dd5d3fef514fa91330245b06addd /llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp | |
parent | 3cd08d9df7b3a4bec2e3ed8b84ed783fd18a21d7 (diff) | |
download | bcm5719-llvm-f5c834fce159386feb5cfa2f2758975fa1f7e6e8.tar.gz bcm5719-llvm-f5c834fce159386feb5cfa2f2758975fa1f7e6e8.zip |
inline away the trivial AsmPrinter::EOL() method.
llvm-svn: 94230
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp index 9286ad51853..e41b6e950b9 100644 --- a/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp @@ -21,7 +21,7 @@ #include "llvm/Target/TargetLoweringObjectFile.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/FormattedStream.h" using namespace llvm; namespace { @@ -105,8 +105,7 @@ void OcamlGCMetadataPrinter::finishAssembly(raw_ostream &OS, AsmPrinter &AP, AP.OutStreamer.SwitchSection(AP.getObjFileLowering().getDataSection()); EmitCamlGlobal(getModule(), OS, AP, MAI, "data_end"); - OS << AddressDirective << 0; // FIXME: Why does ocaml emit this?? - AP.EOL(); + OS << AddressDirective << 0 << '\n'; // FIXME: Why does ocaml emit this?? AP.OutStreamer.SwitchSection(AP.getObjFileLowering().getDataSection()); EmitCamlGlobal(getModule(), OS, AP, MAI, "frametable"); |