[llvm-commits] CVS: llvm/tools/lli/ExecutionEngine.h
Brian Gaeke
gaeke at niobe.cs.uiuc.edu
Wed Aug 13 13:19:11 PDT 2003
Changes in directory llvm/tools/lli:
ExecutionEngine.h updated: 1.5 -> 1.6
---
Log message:
Deconstify parameter to getPointerToFunction().
---
Diffs of the changes:
Index: llvm/tools/lli/ExecutionEngine.h
diff -u llvm/tools/lli/ExecutionEngine.h:1.5 llvm/tools/lli/ExecutionEngine.h:1.6
--- llvm/tools/lli/ExecutionEngine.h:1.5 Fri Jul 25 13:06:53 2003
+++ llvm/tools/lli/ExecutionEngine.h Wed Aug 13 13:17:51 2003
@@ -79,7 +79,7 @@
// different ways. They should each implement this to say what a function
// pointer should look like.
//
- virtual void *getPointerToFunction(const Function *F) = 0;
+ virtual void *getPointerToFunction(Function *F) = 0;
protected:
void emitGlobals();
More information about the llvm-commits
mailing list