diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-22 19:21:41 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-22 19:21:41 +0000 |
commit | e0182ec0e473ae2cd23f6451d2539b7ec449f04e (patch) | |
tree | 794de57abbaf68c28b66840e51ea0058fcea6d0e /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | b4ae2da7e4bacbcfee146c30b03c568274b320b8 (diff) |
Support non-fallthrough unconditional branches in FastISel.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 9304c0e7a1..e13cfc0fa0 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -5113,7 +5113,7 @@ void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB, cast<BranchInst>(LLVMBB->getTerminator())->isUnconditional()) { if (FastISel *F = TLI.createFastISel(FuncInfo.MF)) { Begin = F->SelectInstructions(Begin, LLVMBB->end(), - FuncInfo.ValueMap, BB); + FuncInfo.ValueMap, FuncInfo.MBBMap, BB); // Clean up the FastISel object. TODO: Reorganize what data is // stored in the FastISel class itself and what is merely passed |