From 890b4bd3c0b64235a43159fd44fba9a5a4ae8190 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 20 Nov 2004 03:11:07 +0000 Subject: Add accessor git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18030 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/JIT/JIT.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/ExecutionEngine/JIT/JIT.h b/lib/ExecutionEngine/JIT/JIT.h index b0c26b0..5948236 100644 --- a/lib/ExecutionEngine/JIT/JIT.h +++ b/lib/ExecutionEngine/JIT/JIT.h @@ -43,6 +43,10 @@ class JIT : public ExecutionEngine { 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 -- cgit v1.1