fix typo; NFC
authorSanjay Patel <spatel@rotateright.com>
Fri, 9 Jan 2015 16:29:50 +0000 (16:29 +0000)
committerSanjay Patel <spatel@rotateright.com>
Fri, 9 Jan 2015 16:29:50 +0000 (16:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225524 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/LazyValueInfo.cpp

index f7f5e32d4429da0e9cddb39ce63a6d6fd00bcfc1..bc7c322156628619c9dcfafa8739b877891645e0 100644 (file)
@@ -888,7 +888,7 @@ static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom,
   // know that v != 0.
   if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
     // If this is a conditional branch and only one successor goes to BBTo, then
-    // we maybe able to infer something from the condition. 
+    // we may be able to infer something from the condition. 
     if (BI->isConditional() &&
         BI->getSuccessor(0) != BI->getSuccessor(1)) {
       bool isTrueDest = BI->getSuccessor(0) == BBTo;