Nuke moribund "std::string" version of EOL(..., Encoding).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80466 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2009-08-30 00:28:57 +00:00
parent e987483256
commit 8ed211406a
2 changed files with 0 additions and 9 deletions

View File

@ -268,7 +268,6 @@ namespace llvm {
void EOL() const;
void EOL(const std::string &Comment) const;
void EOL(const char* Comment) const;
void EOL(const std::string &Comment, unsigned Encoding) const;
void EOL(const char *Comment, unsigned Encoding) const;
/// EmitULEB128Bytes - Emit an assembler byte data directive to compose an

View File

@ -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());