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 | f58dac31690f37c8f93328f8470298e1fe7862cc (patch) | |
tree | 5a4f1ccc6c6dc736f82201c8e1e94563c31b7867 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 3a7c33a853b03d9dcde400b9d58e02c25d9789db (diff) |
add a new target hook.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index e2276cd829..a5b6300f6e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/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!"); |