[llvm-commits] CVS: llvm/lib/ExecutionEngine/JIT/JIT.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Nov 19 19:11:19 PST 2004
Changes in directory llvm/lib/ExecutionEngine/JIT:
JIT.h updated: 1.24 -> 1.25
---
Log message:
Add accessor
---
Diffs of the changes: (+4 -0)
Index: llvm/lib/ExecutionEngine/JIT/JIT.h
diff -u llvm/lib/ExecutionEngine/JIT/JIT.h:1.24 llvm/lib/ExecutionEngine/JIT/JIT.h:1.25
--- llvm/lib/ExecutionEngine/JIT/JIT.h:1.24 Sun Nov 7 17:58:46 2004
+++ llvm/lib/ExecutionEngine/JIT/JIT.h Fri Nov 19 21:11:07 2004
@@ -43,6 +43,10 @@
public:
~JIT();
+ /// getJITInfo - Return the target JIT information structure.
+ ///
+ TargetJITInfo &getJITInfo() const { return TJI; }
+
/// create - Create an return a new JIT compiler if there is one available
/// for the current target. Otherwise, return null. If the JIT is created
/// successfully, it takes responsibility for deleting the specified
More information about the llvm-commits
mailing list