commit | 0e17f638e67740ad1be4cc230ca6f0476b53b3ca | [log] [tgz] |
---|---|---|
author | Owen Anderson <resistor@mac.com> | Fri Jun 26 16:46:15 2009 +0000 |
committer | Owen Anderson <resistor@mac.com> | Fri Jun 26 16:46:15 2009 +0000 |
tree | 99d4e85fd91ca4ba05782719fc058816b9e15d97 | |
parent | b5f41a0fae7f5826364080ae7d50d38228d45e7f [diff] [blame] |
Get rid of unnecessary global variables. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74291 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 8a285ec..6b13c90 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -202,7 +202,7 @@ 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);