[llvm-commits] CVS: llvm/lib/ExecutionEngine/Interpreter/Interpreter.h

Misha Brukman brukman at cs.uiuc.edu
Sun Nov 7 15:58:55 PST 2004



Changes in directory llvm/lib/ExecutionEngine/Interpreter:

Interpreter.h updated: 1.67 -> 1.68
---
Log message:

Implement ExecutionEngine::freeMachineCodeForFunction()


---
Diffs of the changes:  (+4 -0)

Index: llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
diff -u llvm/lib/ExecutionEngine/Interpreter/Interpreter.h:1.67 llvm/lib/ExecutionEngine/Interpreter/Interpreter.h:1.68
--- llvm/lib/ExecutionEngine/Interpreter/Interpreter.h:1.67	Sat Oct 16 13:21:33 2004
+++ llvm/lib/ExecutionEngine/Interpreter/Interpreter.h	Sun Nov  7 17:58:44 2004
@@ -120,6 +120,10 @@
     return getPointerToFunction(F);
   }
 
+  /// freeMachineCodeForFunction - The interpreter does not generate any code.
+  ///
+  void freeMachineCodeForFunction(Function *F) { }
+  
   // Methods used to execute code:
   // Place a call on the stack
   void callFunction(Function *F, const std::vector<GenericValue> &ArgVals);






More information about the llvm-commits mailing list