[llvm-commits] CVS: llvm/include/llvm/Target/TargetLowering.h
Chris Lattner
lattner at cs.uiuc.edu
Fri May 13 22:51:19 PDT 2005
Changes in directory llvm/include/llvm/Target:
TargetLowering.h updated: 1.13 -> 1.14
---
Log message:
Pass the dag into LowerOperation
---
Diffs of the changes: (+1 -1)
TargetLowering.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/Target/TargetLowering.h
diff -u llvm/include/llvm/Target/TargetLowering.h:1.13 llvm/include/llvm/Target/TargetLowering.h:1.14
--- llvm/include/llvm/Target/TargetLowering.h:1.13 Fri May 13 13:50:07 2005
+++ llvm/include/llvm/Target/TargetLowering.h Sat May 14 00:51:05 2005
@@ -299,7 +299,7 @@
/// which are registered to use 'custom' lowering. This callback is invoked.
/// If the target has no operations that require custom lowering, it need not
/// implement this. The default implementation of this aborts.
- virtual SDOperand LowerOperation(SDOperand Op);
+ virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
private:
More information about the llvm-commits
mailing list