aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-07-18 01:43:53 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-07-18 01:43:53 +0000
commit4e30a4941f045b8e3be342b585100b41e5870b0a (patch)
treee25d373dbc3c2e0634b4fb98a41e1de386ee2e03 /include
parentad57b14662ea42e297c02235943ff3e1d0bf05fd (diff)
downloadexternal_llvm-4e30a4941f045b8e3be342b585100b41e5870b0a.zip
external_llvm-4e30a4941f045b8e3be342b585100b41e5870b0a.tar.gz
external_llvm-4e30a4941f045b8e3be342b585100b41e5870b0a.tar.bz2
Revert 76177 for now. It's messing up ARM asm printing. Also this significant debate about its efficiency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76279 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetAsmInfo.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h
index 3604e9a..50e08bd 100644
--- a/include/llvm/Target/TargetAsmInfo.h
+++ b/include/llvm/Target/TargetAsmInfo.h
@@ -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;
}