remove a bunch of now-dead crud from the asmprinter and TAI interfaces.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78428 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-08-07 23:16:27 +00:00
parent 59e8677b19
commit db0a9706e7
4 changed files with 0 additions and 61 deletions

View File

@@ -72,14 +72,6 @@ namespace llvm {
/// assembler.
const char *CommentString; // Defaults to "#"
/// FirstOperandColumn - The output column where the first operand
/// should be printed
unsigned FirstOperandColumn; // Defaults to 0 (ignored)
/// MaxOperandLength - The maximum length of any printed asm
/// operand
unsigned MaxOperandLength; // Defaults to 0 (ignored)
/// GlobalPrefix - If this is set to a non-empty string, it is prepended
/// onto all global symbols. This is often used for "_" or ".".
const char *GlobalPrefix; // Defaults to ""
@@ -361,12 +353,6 @@ namespace llvm {
const char *getCommentString() const {
return CommentString;
}
unsigned getFirstOperandColumn() const {
return FirstOperandColumn;
}
unsigned getMaxOperandLength() const {
return MaxOperandLength;
}
const char *getGlobalPrefix() const {
return GlobalPrefix;
}