aboutsummaryrefslogtreecommitdiffstats
path: root/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
commitcf88d324a892c8f93ccdac55788afb48b17c728b (patch)
tree3968afb7fd5847a84753b6601bb214aed08cebf6 /lib/CodeGen/MachineCodeEmitter.cpp
parent213c969c92ce8cffbc085429a5f4eb08a412d195 (diff)
downloadexternal_llvm-cf88d324a892c8f93ccdac55788afb48b17c728b.zip
external_llvm-cf88d324a892c8f93ccdac55788afb48b17c728b.tar.gz
external_llvm-cf88d324a892c8f93ccdac55788afb48b17c728b.tar.bz2
Fix the FIXME, nuke the JIT specific forceCompilationOf method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineCodeEmitter.cpp')
-rw-r--r--lib/CodeGen/MachineCodeEmitter.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp
index 3e955b0..248b06a 100644
--- a/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/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);
- }
};
}