[llvm-commits] CVS: reopt/lib/TraceJIT/TraceJIT.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Mon Nov 8 12:59:51 PST 2004
Changes in directory reopt/lib/TraceJIT:
TraceJIT.cpp updated: 1.7 -> 1.8
---
Log message:
Add freeMachineCodeForFunction to the TraceJIT, which does nothing,
just like the real JIT's version.
---
Diffs of the changes: (+6 -0)
Index: reopt/lib/TraceJIT/TraceJIT.cpp
diff -u reopt/lib/TraceJIT/TraceJIT.cpp:1.7 reopt/lib/TraceJIT/TraceJIT.cpp:1.8
--- reopt/lib/TraceJIT/TraceJIT.cpp:1.7 Thu Sep 2 11:55:45 2004
+++ reopt/lib/TraceJIT/TraceJIT.cpp Mon Nov 8 14:59:39 2004
@@ -242,6 +242,12 @@
return Addr;
}
+/// freeMachineCodeForFunction - release machine code memory for given Function
+///
+void TraceJIT::freeMachineCodeForFunction(Function *F) {
+ // currently a no-op
+}
+
/// create - Create and return a new TraceJIT compiler, or 0 if
/// there is an error.
///
More information about the llvm-commits
mailing list