summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-07-03 00:51:05 +0000
committerDan Gohman <gohman@apple.com>2008-07-03 00:51:05 +0000
commitce3c413e077211c505465cb53d005342a5b1f96c (patch)
tree59754b9d77f33ac4d75e52208a948f0b3a5dde80 /lib/ExecutionEngine
parent5b9f60bc22582e80b081d4277a47d8b7fa14e3f4 (diff)
downloadllvm-ce3c413e077211c505465cb53d005342a5b1f96c.tar.gz
llvm-ce3c413e077211c505465cb53d005342a5b1f96c.tar.bz2
llvm-ce3c413e077211c505465cb53d005342a5b1f96c.tar.xz
Correct a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/JIT/JIT.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.h b/lib/ExecutionEngine/JIT/JIT.h
index 7366f94436..a7105e3f21 100644
--- a/lib/ExecutionEngine/JIT/JIT.h
+++ b/lib/ExecutionEngine/JIT/JIT.h
@@ -80,7 +80,7 @@ public:
virtual Module *removeModuleProvider(ModuleProvider *MP,
std::string *ErrInfo = 0);
- /// run - Start execution with the specified function and arguments.
+ /// runFunction - Start execution with the specified function and arguments.
///
virtual GenericValue runFunction(Function *F,
const std::vector<GenericValue> &ArgValues);