diff options
author | Fangrui Song <maskray@google.com> | 2018-03-30 22:22:31 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-03-30 22:22:31 +0000 |
commit | 956ee797955c852e4055194a82c78a3ba3519128 (patch) | |
tree | 0f62758f53dcebc02681222e6ab6cb3770be3da5 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
parent | dedda6fafe87ef5e042da01480a766c22a7dee4a (diff) | |
download | bcm5719-llvm-956ee797955c852e4055194a82c78a3ba3519128.tar.gz bcm5719-llvm-956ee797955c852e4055194a82c78a3ba3519128.zip |
Fix a bunch of typoes. NFC
llvm-svn: 328907
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index bb01952bf46..4994115b4a2 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -9677,7 +9677,7 @@ void SelectionDAGBuilder::lowerWorkItem(SwitchWorkListItem W, Value *Cond, }); // Rearrange the case blocks so that the last one falls through if possible - // without without changing the order of probabilities. + // without changing the order of probabilities. for (CaseClusterIt I = W.LastCluster; I > W.FirstCluster; ) { --I; if (I->Prob > W.LastCluster->Prob) |