llvm-svn: 27008
This commit is contained in:
Evan Cheng 2006-03-23 23:24:51 +00:00
parent ce8a2b9603
commit 4b5b4e373b
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ void TargetLowering::computeRegisterProperties() {
// Loop over all of the legal vector value types, specifying an identity type
// transformation.
for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
i != MVT::LAST_VECTOR_VALUETYPE; ++i) {
i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
if (isTypeLegal((MVT::ValueType)i))
TransformToType[i] = (MVT::ValueType)i;
}