Style fix: Remove unneeded parentheses.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151488 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nadav Rotem 2012-02-26 12:34:17 +00:00
parent 2e851a9abf
commit 794c16ae85

View File

@ -227,8 +227,8 @@ struct StoreModifier: public Modifier {
Type *ValTy = Val->getType();
// Do not store vectors of i1s because they are unsupported
//by the codegen.
if (ValTy->isVectorTy() && (ValTy->getScalarSizeInBits() == 1))
// by the codegen.
if (ValTy->isVectorTy() && ValTy->getScalarSizeInBits() == 1)
return;
new StoreInst(Val, Ptr, BB->getTerminator());