[llvm-commits] [llvm] r41018 - /llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp

Reid Spencer rspencer at reidspencer.com
Sat Aug 11 08:57:56 PDT 2007


Author: reid
Date: Sat Aug 11 10:57:56 2007
New Revision: 41018

URL: http://llvm.org/viewvc/llvm-project?rev=41018&view=rev
Log:
Fix a comment typo noticed by Sandro Magi.

Modified:
    llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp

Modified: llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp?rev=41018&r1=41017&r2=41018&view=diff

==============================================================================
--- llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp Sat Aug 11 10:57:56 2007
@@ -336,7 +336,7 @@
 
 /// 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)) 





More information about the llvm-commits mailing list