Fix style violation in BBVectorize (pointed out by Bill Wendling)

llvm-svn: 154810
This commit is contained in:
Hal Finkel 2012-04-16 12:39:17 +00:00
parent def81b9155
commit 52ba49f399
1 changed files with 3 additions and 3 deletions

View File

@ -612,9 +612,9 @@ namespace {
&& (T1->isFPOrFPVectorTy() || T2->isFPOrFPVectorTy()))
return false;
if ((!Config.VectorizePointers || TD == 0)
&& (T1->getScalarType()->isPointerTy() ||
T2->getScalarType()->isPointerTy()))
if ((!Config.VectorizePointers || TD == 0) &&
(T1->getScalarType()->isPointerTy() ||
T2->getScalarType()->isPointerTy()))
return false;
if (T1->getPrimitiveSizeInBits() > Config.VectorBits/2 ||