diff options
author | David Greene <greened@obbligato.org> | 2009-07-17 14:24:46 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-07-17 14:24:46 +0000 |
commit | ab9238e876dcf6da101d8ae626925bcd9e537a7e (patch) | |
tree | c1c69fbb48fe4f4cea1693f87a775f3563e724c4 /lib | |
parent | 3e11988c42338751f3712b51a6f4d64362719711 (diff) |
Add logic to align instruction operands to columns for pretty-printing.
No target uses this currently. This patch only adds the mechanism so
that local installations can choose to enable this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76177 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/TargetAsmInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/TargetAsmInfo.cpp b/lib/Target/TargetAsmInfo.cpp index 333aa9dbbe..8bc436819a 100644 --- a/lib/Target/TargetAsmInfo.cpp +++ b/lib/Target/TargetAsmInfo.cpp @@ -45,6 +45,8 @@ TargetAsmInfo::TargetAsmInfo(const TargetMachine &tm) SeparatorChar = ';'; CommentColumn = 60; CommentString = "#"; + FirstOperandColumn = 0; + MaxOperandLength = 0; GlobalPrefix = ""; PrivateGlobalPrefix = "."; LessPrivateGlobalPrefix = ""; |