diff options
author | Sanjay Patel <spatel@rotateright.com> | 2015-06-25 21:11:08 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2015-06-25 21:11:08 +0000 |
commit | e4aedb55d696ef9f02b1d511ca48c66a4c48f9d5 (patch) | |
tree | 04e4c53a2da56eff2856f19c931a62c0a731b630 | |
parent | 1f9f6c039a5a983e2fef315875ee526a6c7214fb (diff) | |
download | bcm5719-llvm-e4aedb55d696ef9f02b1d511ca48c66a4c48f9d5.tar.gz bcm5719-llvm-e4aedb55d696ef9f02b1d511ca48c66a4c48f9d5.zip |
fix typos; NFC
llvm-svn: 240699
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 43c6e0d96e8..329c1706171 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -1445,8 +1445,8 @@ void SelectionDAGBuilder::FindMergedConditions(const Value *Cond, // We have flexibility in setting Prob for BB1 and Prob for TmpBB. // The requirement is that // TrueProb for BB1 + (FalseProb for BB1 * TrueProb for TmpBB) - // = TrueProb for orignal BB. - // Assuming the orignal weights are A and B, one choice is to set BB1's + // = TrueProb for original BB. + // Assuming the original weights are A and B, one choice is to set BB1's // weights to A and A+2B, and set TmpBB's weights to A and 2B. This choice // assumes that // TrueProb for BB1 == FalseProb for BB1 * TrueProb for TmpBB. @@ -1481,8 +1481,8 @@ void SelectionDAGBuilder::FindMergedConditions(const Value *Cond, // We have flexibility in setting Prob for BB1 and Prob for TmpBB. // The requirement is that // FalseProb for BB1 + (TrueProb for BB1 * FalseProb for TmpBB) - // = FalseProb for orignal BB. - // Assuming the orignal weights are A and B, one choice is to set BB1's + // = FalseProb for original BB. + // Assuming the original weights are A and B, one choice is to set BB1's // weights to 2A+B and B, and set TmpBB's weights to 2A and B. This choice // assumes that // FalseProb for BB1 == TrueProb for BB1 * FalseProb for TmpBB. |