From 9e04c82c0ec7c94d82168c07177ff9d1fea5b9d5 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 12 Oct 2007 14:13:46 +0000 Subject: [PATCH] Add support to SplitVectorOp for powi, where the second operand is a scalar integer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42906 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 361c38d18f0..3132d892fef 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -6335,6 +6335,12 @@ SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) { NewVT, ScalarizeVectorOp(Node->getOperand(0))); break; + case ISD::FPOWI: + Result = DAG.getNode(Node->getOpcode(), + NewVT, + ScalarizeVectorOp(Node->getOperand(0)), + Node->getOperand(1)); + break; case ISD::LOAD: { LoadSDNode *LD = cast(Node); SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain. -- 2.34.1