From ac9dc08c7f0ae60c125624d72c3022025d79ee9e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 23 Jan 2005 04:36:26 +0000 Subject: [PATCH] Adjust to changes in SelectionDAG interface. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19779 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 20d731332b8..e5266c294f8 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1018,7 +1018,7 @@ void SelectionDAGISel::BuildSelectionDAG(SelectionDAG &DAG, BasicBlock *LLVMBB, void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF, FunctionLoweringInfo &FuncInfo) { - SelectionDAG DAG(TLI.getTargetMachine(), MF); + SelectionDAG DAG(TLI, MF); CurDAG = &DAG; std::vector > PHINodesToUpdate; @@ -1031,7 +1031,7 @@ void SelectionDAGISel::SelectBasicBlock(BasicBlock *LLVMBB, MachineFunction &MF, // Second step, hack on the DAG until it only uses operations and types that // the target supports. - DAG.Legalize(TLI); + DAG.Legalize(); DEBUG(std::cerr << "Legalized selection DAG:\n"); DEBUG(DAG.dump()); -- 2.11.0