diff options
Diffstat (limited to 'include/llvm/Target/TargetAsmInfo.h')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index b5c1796e39..70d2112225 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -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; } |