diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-01-09 16:29:50 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-01-09 16:29:50 +0000 |
commit | e6e58c1a9e93e180196a08f0c14faf15c6237bcf (patch) | |
tree | 19ae717f43d5f2428854b88151caa3004cda0b0c /llvm/lib/Analysis/LazyValueInfo.cpp | |
parent | d729115fa76e7c6c45da10ff4aad39088c1a5399 (diff) | |
download | bcm5719-llvm-e6e58c1a9e93e180196a08f0c14faf15c6237bcf.tar.gz bcm5719-llvm-e6e58c1a9e93e180196a08f0c14faf15c6237bcf.zip |
fix typo; NFC
llvm-svn: 225524
Diffstat (limited to 'llvm/lib/Analysis/LazyValueInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LazyValueInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LazyValueInfo.cpp b/llvm/lib/Analysis/LazyValueInfo.cpp index f7f5e32d442..bc7c3221566 100644 --- a/llvm/lib/Analysis/LazyValueInfo.cpp +++ b/llvm/lib/Analysis/LazyValueInfo.cpp @@ -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; |