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:
parent
2449d16831
commit
65d5297fd2
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user