mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
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:
parent
e987483256
commit
8ed211406a
@ -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