summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-30 00:28:57 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-30 00:28:57 +0000
commitdc09af3ef58a223cf6cc60a46d177e363afb3f54 (patch)
treeb670554bd5965aaeb072e1a4c8b37d10ca5c009c /llvm/lib/CodeGen
parent5ed4adffa76101b975fe41a8bf04f5102b6f2d07 (diff)
downloadbcm5719-llvm-dc09af3ef58a223cf6cc60a46d177e363afb3f54.tar.gz
bcm5719-llvm-dc09af3ef58a223cf6cc60a46d177e363afb3f54.zip
Nuke moribund "std::string" version of EOL(..., Encoding).
llvm-svn: 80466
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index f06db8e1a03..a92d923a7d3 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -633,14 +633,6 @@ static const char *DecodeDWARFEncoding(unsigned Encoding) {
return 0;
}
-void AsmPrinter::EOL(const std::string &Comment, unsigned Encoding) const {
- if (VerboseAsm && !Comment.empty()) {
- EOL(Comment.c_str(), Encoding);
- return;
- }
- O << '\n';
-}
-
void AsmPrinter::EOL(const char *Comment, unsigned Encoding) const {
if (VerboseAsm && *Comment) {
O.PadToColumn(MAI->getCommentColumn());
OpenPOWER on IntegriCloud