From: Robert Bocchino Date: Tue, 10 Jan 2006 19:04:57 +0000 (+0000) Subject: Added selection DAG support for the extractelement operation. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c0f4cd99316b0b9ae10b5774d1036d74d838f0af;p=oota-llvm.git Added selection DAG support for the extractelement operation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25179 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index b7dd97c62a7..d423ddd1cab 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -388,6 +388,7 @@ public: void visitUnreachable(UnreachableInst &I) { /* noop */ } // These all get lowered before this pass. + void visitExtractElement(ExtractElementInst &I) { assert(0 && "TODO"); } void visitSwitch(SwitchInst &I) { assert(0 && "TODO"); } void visitInvoke(InvokeInst &I) { assert(0 && "TODO"); } void visitUnwind(UnwindInst &I) { assert(0 && "TODO"); }