diff options
| author | Chris Lattner <sabre@nondot.org> | 2007-10-19 03:31:45 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2007-10-19 03:31:45 +0000 |
| commit | 579db81f1c3c5c5861d1ca53ab007324b4bc3268 (patch) | |
| tree | d1ca8eacbab5cbaf39e3b0531465dd052b5fcdc9 /llvm/lib | |
| parent | 5d979d57ae5229af6d64864a5bce471a991df15a (diff) | |
| download | bcm5719-llvm-579db81f1c3c5c5861d1ca53ab007324b4bc3268.tar.gz bcm5719-llvm-579db81f1c3c5c5861d1ca53ab007324b4bc3268.zip | |
add a new target hook.
llvm-svn: 43165
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index e2276cd8292..a5b6300f6e3 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -4134,6 +4134,14 @@ SDOperand TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) { return SDOperand(); } +std::pair<SDOperand,SDOperand> +TargetLowering::ExpandOperation(SDOperand Op, SelectionDAG &DAG) { + assert(0 && "ExpandOperation not implemented for this target!"); + abort(); + return std::pair<SDOperand,SDOperand>(); +} + + SDOperand TargetLowering::CustomPromoteOperation(SDOperand Op, SelectionDAG &DAG) { assert(0 && "CustomPromoteOperation not implemented for this target!"); |

