diff options
author | Reid Spencer <reid@x10sys.com> | 2007-08-11 15:57:56 +0000 |
---|---|---|
committer | Reid Spencer <reid@x10sys.com> | 2007-08-11 15:57:56 +0000 |
commit | 10ffdf1f0e6cea0c2315a844ba16627fd1f3bc27 (patch) | |
tree | b360f36284906fa11d61ce0835a8aa9a9c7205b5 /lib | |
parent | 3b15d72a076887e463647b88e0c512eb95123ee4 (diff) | |
download | external_llvm-10ffdf1f0e6cea0c2315a844ba16627fd1f3bc27.zip external_llvm-10ffdf1f0e6cea0c2315a844ba16627fd1f3bc27.tar.gz external_llvm-10ffdf1f0e6cea0c2315a844ba16627fd1f3bc27.tar.bz2 |
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')
-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 bbddb95..325ab8a 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)) |