From: Akira Hatanaka Date: Mon, 23 May 2011 22:23:58 +0000 (+0000) Subject: Expand f64 FPOW. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=46da136ec79f484decce7c6cfeef42fb25888996;p=oota-llvm.git Expand f64 FPOW. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131928 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MipsISelLowering.cpp b/lib/Target/Mips/MipsISelLowering.cpp index 15ab172b377..63bafa16e67 100644 --- a/lib/Target/Mips/MipsISelLowering.cpp +++ b/lib/Target/Mips/MipsISelLowering.cpp @@ -135,6 +135,7 @@ MipsTargetLowering(MipsTargetMachine &TM) setOperationAction(ISD::FCOS, MVT::f64, Expand); setOperationAction(ISD::FPOWI, MVT::f32, Expand); setOperationAction(ISD::FPOW, MVT::f32, Expand); + setOperationAction(ISD::FPOW, MVT::f64, Expand); setOperationAction(ISD::FLOG, MVT::f32, Expand); setOperationAction(ISD::FLOG2, MVT::f32, Expand); setOperationAction(ISD::FLOG10, MVT::f32, Expand);