aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h13
-rw-r--r--include/llvm/Target/TargetAsmInfo.h14
2 files changed, 0 insertions, 27 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 0ab780b0ab..73644a7600 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -327,19 +327,6 @@ namespace llvm {
void EmitComments(const MCInst &MI) const;
protected:
- /// getOperandColumn - Return the output column number (zero-based)
- /// for operand % "operand." If TargetAsmInfo has FirstOperandColumn
- /// == 0 or MaxOperandLength == 0, return 0, meaning column alignment
- /// is disabled.
- unsigned getOperandColumn(int operand) const;
-
- /// PadToColumn - This gets called every time a tab is emitted. If
- /// column padding is turned on, we replace the tab with the
- /// appropriate amount of padding. If not, we replace the tab with a
- /// space, except for the first operand so that initial operands are
- /// always lined up by tabs.
- void PadToColumn(unsigned Operand) const;
-
/// EmitZeros - Emit a block of zeros.
///
void EmitZeros(uint64_t NumZeros, unsigned AddrSpace = 0) const;
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;
}