[llvm-commits] [llvm] r92552 - /llvm/trunk/include/llvm/CodeGen/ValueTypes.h

Dan Gohman gohman at apple.com
Mon Jan 4 16:30:22 PST 2010


Author: djg
Date: Mon Jan  4 18:30:22 2010
New Revision: 92552

URL: http://llvm.org/viewvc/llvm-project?rev=92552&view=rev
Log:
Fix a typo in a comment.

Modified:
    llvm/trunk/include/llvm/CodeGen/ValueTypes.h

Modified: llvm/trunk/include/llvm/CodeGen/ValueTypes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ValueTypes.h?rev=92552&r1=92551&r2=92552&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ValueTypes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ValueTypes.h Mon Jan  4 18:30:22 2010
@@ -149,7 +149,7 @@
               SimpleTy <= MVT::LAST_VECTOR_VALUETYPE);
     }
     
-    /// isPow2VectorType - Retuns true if the given vector is a power of 2.
+    /// isPow2VectorType - Returns true if the given vector is a power of 2.
     bool isPow2VectorType() const {
       unsigned NElts = getVectorNumElements();
       return !(NElts & (NElts - 1));





More information about the llvm-commits mailing list