diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-02 16:59:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-02 16:59:49 +0000 |
commit | 147bc61f6ae9f5fae78d30bf9ba05bbec2d3498c (patch) | |
tree | 49268cc98b2ea89e4f673375f68d9c801f982c00 | |
parent | bb1c345ec63f517367e552e11a6db9e0a9fe1c3e (diff) | |
download | bcm5719-llvm-147bc61f6ae9f5fae78d30bf9ba05bbec2d3498c.tar.gz bcm5719-llvm-147bc61f6ae9f5fae78d30bf9ba05bbec2d3498c.zip |
Remove the debug machine code emitter. The "FilePrinterEmitter" is moreuseful for debugging.
llvm-svn: 28052
-rw-r--r-- | llvm/include/llvm/CodeGen/MachineCodeEmitter.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineCodeEmitter.h b/llvm/include/llvm/CodeGen/MachineCodeEmitter.h index eba7bae8acc..39a89eeeead 100644 --- a/llvm/include/llvm/CodeGen/MachineCodeEmitter.h +++ b/llvm/include/llvm/CodeGen/MachineCodeEmitter.h @@ -115,12 +115,6 @@ public: // allocateGlobal - Allocate some space for a global variable. virtual unsigned char* allocateGlobal(unsigned size, unsigned alignment) = 0; - /// createDebugEmitter - Return a dynamically allocated machine - /// code emitter, which just prints the opcodes and fields out the cout. This - /// can be used for debugging users of the MachineCodeEmitter interface. - /// - static MachineCodeEmitter *createDebugEmitter(); - /// createFilePrinterEmitter - Return a dynamically allocated /// machine code emitter, which prints binary code to a file. This /// can be used for debugging users of the MachineCodeEmitter interface. |