mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
R600/SI: Temporary fix for f64 fneg
This should be a source modifier, but this unblocks most of my math patches. llvm-svn: 211181
This commit is contained in:
parent
dc16a24358
commit
990ee542e5
@ -212,6 +212,10 @@ SITargetLowering::SITargetLowering(TargetMachine &TM) :
|
|||||||
setOperationAction(ISD::FRINT, MVT::f64, Legal);
|
setOperationAction(ISD::FRINT, MVT::f64, Legal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FIXME: This should be removed and handled the same was as f32 fneg. Source
|
||||||
|
// modifiers also work for the double instructions.
|
||||||
|
setOperationAction(ISD::FNEG, MVT::f64, Expand);
|
||||||
|
|
||||||
setTargetDAGCombine(ISD::SELECT_CC);
|
setTargetDAGCombine(ISD::SELECT_CC);
|
||||||
setTargetDAGCombine(ISD::SETCC);
|
setTargetDAGCombine(ISD::SETCC);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user