Fix a typo in a comment.
authorDan Gohman <gohman@apple.com>
Tue, 5 Jan 2010 00:30:22 +0000 (00:30 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 5 Jan 2010 00:30:22 +0000 (00:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92552 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/ValueTypes.h

index 9dc4c7b7fa4a0530657eea6943cb805e5c847d95..703c4aa6832c08008e737fd60bed32e4629298f3 100644 (file)
@@ -149,7 +149,7 @@ namespace llvm {
               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));