diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index e7c7942b0c9..3ead31a3031 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -144,10 +144,10 @@ public: void finish(); // Do the 'finish' command // Opcode Implementations - void executeCallInst(CallInst *I, ExecutionContext &SF); - void executeRetInst(ReturnInst *I, ExecutionContext &SF); - void executeBrInst(BranchInst *I, ExecutionContext &SF); - void executeAllocInst(AllocationInst *I, ExecutionContext &SF); + void executeCallInst(CallInst &I, ExecutionContext &SF); + void executeRetInst(ReturnInst &I, ExecutionContext &SF); + void executeBrInst(BranchInst &I, ExecutionContext &SF); + void executeAllocInst(AllocationInst &I, ExecutionContext &SF); GenericValue callExternalMethod(Function *F, const std::vector<GenericValue> &ArgVals); void exitCalled(GenericValue GV); |