diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-12 02:48:46 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-12 02:48:46 +0000 |
commit | c6251a7dfd9c6029af8fc61aa100909d75ee238c (patch) | |
tree | eacf0b12690db587dc9f3bd489a69e7d23137529 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | b817ba74f157021968e8807643b95843d5934bce (diff) | |
download | bcm5719-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.cpp | 7 |
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: |