1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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

llvm-svn: 80466
This commit is contained in:
Bill Wendling 2009-08-30 00:28:57 +00:00
parent cc35ffe3df
commit ccb2d3a3b8
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());