diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-08-11 15:57:56 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-08-11 15:57:56 +0000 |
commit | ba28cb91c9df52d1b5b2b7238ab7576a995bf563 (patch) | |
tree | b360f36284906fa11d61ce0835a8aa9a9c7205b5 /lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | 01284b4d55a72e58171dd962b75c73fa47c9ab32 (diff) |
Fix a comment typo noticed by Sandro Magi.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41018 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/ExecutionEngine.cpp')
-rw-r--r-- | lib/ExecutionEngine/ExecutionEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index bbddb95ec3..325ab8af52 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp @@ -336,7 +336,7 @@ void *ExecutionEngine::getPointerToGlobal(const GlobalValue *GV) { /// This function converts a Constant* into a GenericValue. The interesting /// part is if C is a ConstantExpr. -/// @brief Get a GenericValue for a Constnat* +/// @brief Get a GenericValue for a Constant* GenericValue ExecutionEngine::getConstantValue(const Constant *C) { // If its undefined, return the garbage. if (isa<UndefValue>(C)) |