diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:59:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 16:59:15 +0000 |
commit | 8564037d97411c76850e089753b801d8602dc595 (patch) | |
tree | 8ecdbdab2816cc9a1876d57ea52bea45aa5e7abf /llvm/lib/ExecutionEngine/Interpreter | |
parent | 754d3cf7e3ec6ba97ac9b1b5f2559a9736ca55e8 (diff) | |
download | bcm5719-llvm-8564037d97411c76850e089753b801d8602dc595.tar.gz bcm5719-llvm-8564037d97411c76850e089753b801d8602dc595.zip |
Annotations are now const
llvm-svn: 470
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h b/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h index e03c24cc046..bdcffd800c5 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h +++ b/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h @@ -32,7 +32,7 @@ private: // CreateMethodInfo - Factory function to allow MethodInfo annotations to be // created on demand. // -inline static Annotation *CreateMethodInfo(AnnotationID AID, Annotable *O, +inline static Annotation *CreateMethodInfo(AnnotationID AID, const Annotable *O, void *) { assert(AID == MethodInfoAID); return new MethodInfo((Method*)O); // Simply invoke the ctor |