[llvm] r304560 - [LazyValueInfo] Fix typo in comment. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 2 09:21:14 PDT 2017


Author: ctopper
Date: Fri Jun  2 11:21:13 2017
New Revision: 304560

URL: http://llvm.org/viewvc/llvm-project?rev=304560&view=rev
Log:
[LazyValueInfo] Fix typo in comment. NFC

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

Modified: llvm/trunk/lib/Analysis/LazyValueInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LazyValueInfo.cpp?rev=304560&r1=304559&r2=304560&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LazyValueInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LazyValueInfo.cpp Fri Jun  2 11:21:13 2017
@@ -1233,7 +1233,7 @@ bool LazyValueInfoImpl::solveBlockValueB
 
   // Filter out operators we don't know how to reason about before attempting to
   // recurse on our operand(s).  This can cut a long search short if we know
-  // we're not going to be able to get any useful information anways.
+  // we're not going to be able to get any useful information anyways.
   switch (BBI->getOpcode()) {
   case Instruction::Add:
   case Instruction::Sub:




More information about the llvm-commits mailing list