From: Tom Stellard Date: Thu, 13 Sep 2012 15:14:26 +0000 (+0000) Subject: radeon/llvm: Expand vector fadd and fmul on R600 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b282c9611e154254de38fbc0782885944f83384b;p=mesa.git radeon/llvm: Expand vector fadd and fmul on R600 --- diff --git a/src/gallium/drivers/radeon/R600ISelLowering.cpp b/src/gallium/drivers/radeon/R600ISelLowering.cpp index e84983df514..36ca2463427 100644 --- a/src/gallium/drivers/radeon/R600ISelLowering.cpp +++ b/src/gallium/drivers/radeon/R600ISelLowering.cpp @@ -34,6 +34,9 @@ R600TargetLowering::R600TargetLowering(TargetMachine &TM) : addRegisterClass(MVT::i32, &AMDGPU::R600_Reg32RegClass); computeRegisterProperties(); + setOperationAction(ISD::FADD, MVT::v4f32, Expand); + setOperationAction(ISD::FMUL, MVT::v4f32, Expand); + setOperationAction(ISD::BR_CC, MVT::i32, Custom); setOperationAction(ISD::BR_CC, MVT::f32, Custom);