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 | 455df54003677523ab702c564f52d2587a55733e (patch) | |
| tree | f9d996a3b22ab8f6d3d2f21ddd2fe70c29a8e010 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
| parent | 34f7ede9e7b4582fa599797c2d360686177f27da (diff) | |
| download | bcm5719-llvm-455df54003677523ab702c564f52d2587a55733e.tar.gz bcm5719-llvm-455df54003677523ab702c564f52d2587a55733e.zip | |
Get rid of unnecessary global variables.
llvm-svn: 74291
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
| -rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 8a285ecb82c..6b13c90f667 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/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); |

