mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
We may now pass IntrinsicLowering implementations into these methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10630 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -30,6 +30,7 @@ class Module;
|
||||
class ModuleProvider;
|
||||
class TargetData;
|
||||
class Type;
|
||||
class IntrinsicLowering;
|
||||
|
||||
class ExecutionEngine {
|
||||
Module &CurMod;
|
||||
@@ -54,8 +55,10 @@ public:
|
||||
const TargetData &getTargetData() const { return *TD; }
|
||||
|
||||
/// create - This is the factory method for creating an execution engine which
|
||||
/// is appropriate for the current machine.
|
||||
static ExecutionEngine *create(ModuleProvider *MP, bool ForceInterpreter);
|
||||
/// is appropriate for the current machine. If specified, the
|
||||
/// IntrinsicLowering implementation should be allocated on the heap.
|
||||
static ExecutionEngine *create(ModuleProvider *MP, bool ForceInterpreter,
|
||||
IntrinsicLowering *IL = 0);
|
||||
|
||||
/// runFunction - Execute the specified function with the specified arguments,
|
||||
/// and return the result.
|
||||
|
Reference in New Issue
Block a user