summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineCodeEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-22 21:54:35 +0000
committerChris Lattner <sabre@nondot.org>2004-11-22 21:54:35 +0000
commit88dc917c7233b824cc694610fc96b60567a8f6be (patch)
tree1a444630e616bef8c39e031a8c9f18a93d2e665b /llvm/lib/CodeGen/MachineCodeEmitter.cpp
parent0e7faedde708efa9a8293a1015d3e0fd4adff67c (diff)
downloadbcm5719-llvm-88dc917c7233b824cc694610fc96b60567a8f6be.tar.gz
bcm5719-llvm-88dc917c7233b824cc694610fc96b60567a8f6be.zip
Fix the FIXME, nuke the JIT specific forceCompilationOf method.
llvm-svn: 18131
Diffstat (limited to 'llvm/lib/CodeGen/MachineCodeEmitter.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineCodeEmitter.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/llvm/lib/CodeGen/MachineCodeEmitter.cpp b/llvm/lib/CodeGen/MachineCodeEmitter.cpp
index 3e955b02835..248b06a999b 100644
--- a/llvm/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/llvm/lib/CodeGen/MachineCodeEmitter.cpp
@@ -54,15 +54,6 @@ namespace {
uint64_t getConstantPoolEntryAddress(unsigned Num) { return 0; }
uint64_t getCurrentPCValue() { return 0; }
uint64_t getCurrentPCOffset() { return 0; }
-
- // forceCompilationOf - Force the compilation of the specified function, and
- // return its address, because we REALLY need the address now.
- //
- // FIXME: This is JIT specific!
- //
- virtual uint64_t forceCompilationOf(Function *F) {
- return 0;
- }
};
class FilePrinterEmitter : public MachineCodeEmitter {
@@ -160,15 +151,6 @@ namespace {
void addRelocation(const MachineRelocation &MR) {
return MCE.addRelocation(MR);
}
-
- // forceCompilationOf - Force the compilation of the specified function, and
- // return its address, because we REALLY need the address now.
- //
- // FIXME: This is JIT specific!
- //
- virtual uint64_t forceCompilationOf(Function *F) {
- return MCE.forceCompilationOf(F);
- }
};
}
OpenPOWER on IntegriCloud