[llvm] r247938 - fix typo; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 17 13:51:51 PDT 2015


Author: spatel
Date: Thu Sep 17 15:51:50 2015
New Revision: 247938

URL: http://llvm.org/viewvc/llvm-project?rev=247938&view=rev
Log:
fix typo; NFC

Modified:
    llvm/trunk/lib/Analysis/ValueTracking.cpp

Modified: llvm/trunk/lib/Analysis/ValueTracking.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ValueTracking.cpp?rev=247938&r1=247937&r2=247938&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/ValueTracking.cpp (original)
+++ llvm/trunk/lib/Analysis/ValueTracking.cpp Thu Sep 17 15:51:50 2015
@@ -328,7 +328,7 @@ static void computeKnownBitsMul(Value *O
   }
 
   // If low bits are zero in either operand, output low known-0 bits.
-  // Also compute a conserative estimate for high known-0 bits.
+  // Also compute a conservative estimate for high known-0 bits.
   // More trickiness is possible, but this is sufficient for the
   // interesting case of alignment computation.
   KnownOne.clearAllBits();




More information about the llvm-commits mailing list