diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-10 00:47:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-10 00:47:53 +0000 |
commit | 47529c9ac6d4731e9f5a1b2d3c64769b1b2d5f1d (patch) | |
tree | c6821f49b23f66dcbd1e530a205fe4809fdf1771 /include/llvm/CodeGen | |
parent | 35c187bcfda326edcddf0c71ab593786cf88f577 (diff) |
Move verbose asm instruction comments to using MCStreamer.
The major win of this is that the code is simpler and they
print on the same line as the instruction again:
movl %eax, 96(%esp) ## 4-byte Spill
movl 96(%esp), %eax ## 4-byte Reload
cmpl 92(%esp), %eax ## 4-byte Folded Reload
jl LBB7_86
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95738 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 382fe7159d..c85e6678cf 100644 --- a/include/llvm/CodeGen/AsmPrinter.h +++ b/include/llvm/CodeGen/AsmPrinter.h @@ -313,9 +313,6 @@ namespace llvm { /// debug tables. void printDeclare(const MachineInstr *MI) const; - /// EmitComments - Pretty-print comments for instructions - void EmitComments(const MachineInstr &MI) const; - /// GetGlobalValueSymbol - Return the MCSymbol for the specified global /// value. MCSymbol *GetGlobalValueSymbol(const GlobalValue *GV) const; |