Fix a typo in a comment.

llvm-svn: 92552
This commit is contained in:
Dan Gohman 2010-01-05 00:30:22 +00:00
parent f86bf4abfa
commit 0b10fd4f4a
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ namespace llvm {
SimpleTy <= MVT::LAST_VECTOR_VALUETYPE); 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 { bool isPow2VectorType() const {
unsigned NElts = getVectorNumElements(); unsigned NElts = getVectorNumElements();
return !(NElts & (NElts - 1)); return !(NElts & (NElts - 1));