summaryrefslogtreecommitdiff
path: root/lib/Target/R600
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-06-20 17:06:05 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-06-20 17:06:05 +0000
commit2d245e2da458a8088f46136df93b918282833994 (patch)
treec48810a3bac5e1c651468ed1a7f133e0cb53f415 /lib/Target/R600
parent98b0736565214ec13b9b1bd329d041cbf6e18f9c (diff)
downloadllvm-2d245e2da458a8088f46136df93b918282833994.tar.gz
llvm-2d245e2da458a8088f46136df93b918282833994.tar.bz2
llvm-2d245e2da458a8088f46136df93b918282833994.tar.xz
R600: Expand vector fexp2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211375 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/R600')
-rw-r--r--lib/Target/R600/AMDGPUISelLowering.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/R600/AMDGPUISelLowering.cpp b/lib/Target/R600/AMDGPUISelLowering.cpp
index 1aa92fadbe..ee6eb5bd32 100644
--- a/lib/Target/R600/AMDGPUISelLowering.cpp
+++ b/lib/Target/R600/AMDGPUISelLowering.cpp
@@ -320,6 +320,7 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) :
setOperationAction(ISD::FCEIL, VT, Expand);
setOperationAction(ISD::FCOS, VT, Expand);
setOperationAction(ISD::FDIV, VT, Expand);
+ setOperationAction(ISD::FEXP2, VT, Expand);
setOperationAction(ISD::FPOW, VT, Expand);
setOperationAction(ISD::FFLOOR, VT, Expand);
setOperationAction(ISD::FTRUNC, VT, Expand);