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 | 2db3f8a0952298c9a185e911dab761562c7e85f5 (patch) | |
tree | 3b351919d594f02e22e18632271881074ff51310 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | a65490c5df2c9075ba12ef41be4e85d3134550b4 (diff) | |
download | bcm5719-llvm-2db3f8a0952298c9a185e911dab761562c7e85f5.tar.gz bcm5719-llvm-2db3f8a0952298c9a185e911dab761562c7e85f5.zip |
Reapply r55191 and r55192.
llvm-svn: 55205
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 9304c0e7a16..e13cfc0fa03 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/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 |