summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-19 03:31:45 +0000
committerChris Lattner <sabre@nondot.org>2007-10-19 03:31:45 +0000
commit579db81f1c3c5c5861d1ca53ab007324b4bc3268 (patch)
treed1ca8eacbab5cbaf39e3b0531465dd052b5fcdc9 /llvm/lib
parent5d979d57ae5229af6d64864a5bce471a991df15a (diff)
downloadbcm5719-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.cpp8
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!");
OpenPOWER on IntegriCloud