diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-05-02 17:20:28 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-05-02 17:20:28 +0000 |
| commit | 67a3aa2aaa6a0ec6e7bdf723de6406dd5ff75e01 (patch) | |
| tree | 8e808c478cb3ea71a14db67e7becb3891c8dbd3e /llvm/lib/CodeGen | |
| parent | b58f1fa905416fd34f50972f7ea3fa12ade141be (diff) | |
| download | bcm5719-llvm-67a3aa2aaa6a0ec6e7bdf723de6406dd5ff75e01.tar.gz bcm5719-llvm-67a3aa2aaa6a0ec6e7bdf723de6406dd5ff75e01.zip | |
Remove dead method
llvm-svn: 28055
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/ELFWriter.cpp | 3 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/MachineCodeEmitter.cpp | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/ELFWriter.cpp b/llvm/lib/CodeGen/ELFWriter.cpp index 4be24198864..a802c1aa793 100644 --- a/llvm/lib/CodeGen/ELFWriter.cpp +++ b/llvm/lib/CodeGen/ELFWriter.cpp @@ -65,9 +65,6 @@ namespace llvm { virtual void emitByte(unsigned char B) { OutBuffer->push_back(B); } - virtual void emitWordAt(unsigned W, unsigned *Ptr) { - assert(0 && "ni"); - } virtual void emitWord(unsigned W) { assert(0 && "ni"); } diff --git a/llvm/lib/CodeGen/MachineCodeEmitter.cpp b/llvm/lib/CodeGen/MachineCodeEmitter.cpp index a33552ca872..301d9afb8ae 100644 --- a/llvm/lib/CodeGen/MachineCodeEmitter.cpp +++ b/llvm/lib/CodeGen/MachineCodeEmitter.cpp @@ -14,7 +14,6 @@ #include "llvm/CodeGen/MachineCodeEmitter.h" #include <fstream> #include <iostream> - using namespace llvm; namespace { @@ -105,9 +104,6 @@ namespace { void emitWord(unsigned W) { MCE.emitWord(W); } - void emitWordAt(unsigned W, unsigned *Ptr) { - MCE.emitWordAt(W, Ptr); - } uint64_t getConstantPoolEntryAddress(unsigned Num) { return MCE.getConstantPoolEntryAddress(Num); } |

