Style fix: Remove unneeded parentheses.
authorNadav Rotem <nadav.rotem@intel.com>
Sun, 26 Feb 2012 12:34:17 +0000 (12:34 +0000)
committerNadav Rotem <nadav.rotem@intel.com>
Sun, 26 Feb 2012 12:34:17 +0000 (12:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151488 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-stress/llvm-stress.cpp

index e671c0c19498d716fce4130a09682567ef0f5e4b..f9bf18faa5e19dae64196599764788a232e7ae33 100644 (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());