Implement FPOWI ExpandOp.
authorLauro Ramos Venancio <lauro.venancio@gmail.com>
Wed, 15 Aug 2007 22:13:27 +0000 (22:13 +0000)
committerLauro Ramos Venancio <lauro.venancio@gmail.com>
Wed, 15 Aug 2007 22:13:27 +0000 (22:13 +0000)
Fix PR1287.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41112 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
test/CodeGen/ARM/fpowi.ll [new file with mode: 0644]

index 3d1b47d3f30b27f6e946d85f2061fa6248dd805b..b25f86f774ce3716877bb324cd82c12ed27814a2 100644 (file)
@@ -5604,6 +5604,11 @@ void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
   case ISD::FP_ROUND:
     Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
     break;
+  case ISD::FPOWI:
+    Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
+                                          ? RTLIB::POWI_F32 : RTLIB::POWI_F64),
+                       Node, false, Hi);
+    break;
   case ISD::FSQRT:
   case ISD::FSIN:
   case ISD::FCOS: {
diff --git a/test/CodeGen/ARM/fpowi.ll b/test/CodeGen/ARM/fpowi.ll
new file mode 100644 (file)
index 0000000..ab09fff
--- /dev/null
@@ -0,0 +1,16 @@
+; RUN: llvm-as < %s | llc -mtriple=arm-linux-gnueabi | grep powidf2
+; PR1287
+
+; ModuleID = '<stdin>'
+target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64"
+target triple = "arm-linux-gnueabi"
+
+define double @_ZSt3powdi(double %__x, i32 %__i) {
+entry:
+       %tmp3 = call double @llvm.powi.f64( double 0.000000e+00, i32 0 )                ; <double> [#uses=1]
+       store double %tmp3, double* null, align 8
+       unreachable
+}
+
+declare double @llvm.powi.f64(double, i32)
+