[llvm-commits] [llvm] r151488 - /llvm/trunk/tools/llvm-stress/llvm-stress.cpp

Nadav Rotem nadav.rotem at intel.com
Sun Feb 26 04:34:17 PST 2012


Author: nadav
Date: Sun Feb 26 06:34:17 2012
New Revision: 151488

URL: http://llvm.org/viewvc/llvm-project?rev=151488&view=rev
Log:
Style fix: Remove unneeded parentheses.

Modified:
    llvm/trunk/tools/llvm-stress/llvm-stress.cpp

Modified: llvm/trunk/tools/llvm-stress/llvm-stress.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-stress/llvm-stress.cpp?rev=151488&r1=151487&r2=151488&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-stress/llvm-stress.cpp (original)
+++ llvm/trunk/tools/llvm-stress/llvm-stress.cpp Sun Feb 26 06:34:17 2012
@@ -227,8 +227,8 @@
     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());





More information about the llvm-commits mailing list