[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

2005-12-08 Thread Chris Lattner
Changes in directory llvm/lib/CodeGen/SelectionDAG: SelectionDAGISel.cpp updated: 1.112 - 1.113 --- Log message: improve code insertion in two ways: 1. Only forward subst offsets into loads and stores, not into arbitrary things, where it will likely become a load. 2. If the source is a cast

[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaInstrInfo.td

2005-12-08 Thread Andrew Lenharth
Changes in directory llvm/lib/Target/Alpha: AlphaInstrInfo.td updated: 1.81 - 1.82 --- Log message: it helps if your conditionals are not reversed --- Diffs of the changes: (+9 -9) AlphaInstrInfo.td | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) Index:

[llvm-commits] CVS: llvm/utils/TableGen/DAGISelEmitter.cpp DAGISelEmitter.h

2005-12-08 Thread Evan Cheng
Changes in directory llvm/utils/TableGen: DAGISelEmitter.cpp updated: 1.87 - 1.88 DAGISelEmitter.h updated: 1.40 - 1.41 --- Log message: * Make sure complex pattern operands are selected first since their select functions can return false and causing the instruction pattern match to fail. *