diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-22 21:28:19 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-22 21:28:19 +0000 |
commit | 3c8f36fd03d046ee2a8700c60b5a52887d9f07b9 (patch) | |
tree | f27cf9c08928d2450c01adcbb61f9b8aa5774e64 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 70f24c62ad6314a742a101ef9de046f5e788cb7f (diff) |
Reapply r55191 and r55192.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55205 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 |