summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-22 23:47:11 +0000
committerChris Lattner <sabre@nondot.org>2010-01-22 23:47:11 +0000
commit6f2d99df0328a2d45e9cc496ff3a1fd4c2274108 (patch)
treee8140b2913a0c8cc222474a9882978be5222f067 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
parent56940ab8990f158547480d1171e90fe40455f4c7 (diff)
downloadbcm5719-llvm-6f2d99df0328a2d45e9cc496ff3a1fd4c2274108.tar.gz
bcm5719-llvm-6f2d99df0328a2d45e9cc496ff3a1fd4c2274108.zip
move "EOL" from asmprinter to dwarfprinter. It should eventually
be completely eliminated, but today is not that day. llvm-svn: 94253
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index d8f89034e5e..fcab4aa5e98 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -659,16 +659,6 @@ void AsmPrinter::EmitXXStructorList(Constant *List) {
// Emission and print routines
//
-/// EOL - Print a newline character to asm stream. If a comment is present
-/// then it will be printed first. Comments should not contain '\n'.
-void AsmPrinter::EOL(const Twine &Comment) const {
- if (VerboseAsm && !Comment.isTriviallyEmpty()) {
- O.PadToColumn(MAI->getCommentColumn());
- O << MAI->getCommentString() << ' ' << Comment;
- }
- O << '\n';
-}
-
/// EmitInt8 - Emit a byte directive and value.
///
void AsmPrinter::EmitInt8(int Value) const {
OpenPOWER on IntegriCloud