summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-08-13 18:17:54 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-08-13 18:17:54 +0000
commitaa5866463973dee3bc32dd37b3796763607460d4 (patch)
tree25380eba6f25c7fc2c1922334379275c603c1967 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
parent845b5af4d4833d1bde0bfba79b166cb5cca3d5bd (diff)
downloadbcm5719-llvm-aa5866463973dee3bc32dd37b3796763607460d4.tar.gz
bcm5719-llvm-aa5866463973dee3bc32dd37b3796763607460d4.zip
Deconstify parameter to getPointerToFunction().
llvm-svn: 7822
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r--llvm/lib/ExecutionEngine/Interpreter/Interpreter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
index 50765810abf..51675b5d671 100644
--- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -182,7 +182,7 @@ private: // Helper functions
//
void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
- void *getPointerToFunction(const Function *F) { return (void*)F; }
+ void *getPointerToFunction(Function *F) { return (void*)F; }
// getCurrentExecutablePath() - Return the directory that the lli executable
// lives in.
OpenPOWER on IntegriCloud