Alpha doesn't have a native f32 extload instruction.
[oota-llvm.git] / lib / CodeGen / MachineCodeEmitter.cpp
index 3e955b02835228da30102ea16a41b868fd162496..248b06a999bc5c52692bda76c3a00648f8a41fce 100644 (file)
@@ -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);
-    }
   };
 }