summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-12 02:48:46 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-12 02:48:46 +0000
commitc6251a7dfd9c6029af8fc61aa100909d75ee238c (patch)
treeeacf0b12690db587dc9f3bd489a69e7d23137529 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parentb817ba74f157021968e8807643b95843d5934bce (diff)
downloadbcm5719-llvm-c6251a7dfd9c6029af8fc61aa100909d75ee238c.tar.gz
bcm5719-llvm-c6251a7dfd9c6029af8fc61aa100909d75ee238c.zip
For PR1284:
Implement the "part_set" intrinsic. llvm-svn: 35938
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 9683d486eca..77374f63c84 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -2691,7 +2691,12 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
}
case Intrinsic::part_select: {
// Currently not implemented: just abort
- assert(0 && "bit_part_select intrinsic not implemented");
+ assert(0 && "part_select intrinsic not implemented");
+ abort();
+ }
+ case Intrinsic::part_set: {
+ // Currently not implemented: just abort
+ assert(0 && "part_set intrinsic not implemented");
abort();
}
case Intrinsic::bswap:
OpenPOWER on IntegriCloud