diff options
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 20d731332b8..e5266c294f8 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/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<std::pair<MachineInstr*, unsigned> > 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());  | 

