Use a better name for the label relocations while emitting them for Jump Tables
[oota-llvm.git] / include / llvm / Target / TargetAsmInfo.h
index 3604e9a9eed695c7b82d5fff5e6b48ee11104303..50e08bda445c9118bcfe829fdb15337846c27157 100644 (file)
@@ -222,14 +222,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 ""
@@ -705,9 +697,6 @@ namespace llvm {
     const char *getCommentString() const {
       return CommentString;
     }
-    unsigned getOperandColumn(unsigned Operand) const {
-      return FirstOperandColumn + (MaxOperandLength+1)*(Operand-1);
-    }
     const char *getGlobalPrefix() const {
       return GlobalPrefix;
     }