1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Style fix: Remove unneeded parentheses.

llvm-svn: 151488
This commit is contained in:
Nadav Rotem 2012-02-26 12:34:17 +00:00
parent 2449d16831
commit 65d5297fd2

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());