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:
parent
cc35ffe3df
commit
ccb2d3a3b8
@ -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
|
||||
|
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user