Changes in directory llvm/lib/Target/ARM:
ARMISelDAGToDAG.cpp updated: 1.25 -> 1.26 --- Log message: Match tablegen changes. --- Diffs of the changes: (+4 -3) ARMISelDAGToDAG.cpp | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) Index: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp diff -u llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.25 llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.26 --- llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.25 Wed Aug 9 11:41:12 2006 +++ llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp Fri Aug 11 04:06:36 2006 @@ -317,7 +317,7 @@ : SelectionDAGISel(Lowering), Lowering(TM) { } - void Select(SDOperand &Result, SDOperand Op); + SDNode *Select(SDOperand &Result, SDOperand Op); virtual void InstructionSelectBasicBlock(SelectionDAG &DAG); bool SelectAddrRegImm(SDOperand N, SDOperand &Offset, SDOperand &Base); @@ -346,14 +346,15 @@ return true; //any address fits in a register } -void ARMDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) { +SDNode *ARMDAGToDAGISel::Select(SDOperand &Result, SDOperand Op) { SDNode *N = Op.Val; switch (N->getOpcode()) { default: - SelectCode(Result, Op); + return SelectCode(Result, Op); break; } + return NULL; } } // end anonymous namespace _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits