diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-26 16:46:15 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-26 16:46:15 +0000 |
commit | fdca74c5671e01447be0f1bac3c0c7aa1727690b (patch) | |
tree | 99d4e85fd91ca4ba05782719fc058816b9e15d97 /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | caffbd7b01c232c4d70ae13f6464fbaf08768783 (diff) |
Get rid of unnecessary global variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74291 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 8a285ecb82..6b13c90f66 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -202,7 +202,7 @@ private: // Helper functions void *getPointerToFunction(Function *F) { return (void*)F; } - void initializeExecutionEngine(); + void initializeExecutionEngine() { } void initializeExternalFunctions(); GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF); GenericValue getOperandValue(Value *V, ExecutionContext &SF); |