Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [PowerPC] Only legalize FNEARBYINT with unsafe fp math | Nemanja Ivanovic | 2020-01-02 | 1 | -12/+12 |
| | | | | | | | Commit 0f0330a78709 legalized these nodes on PPC without consideration of unsafe math which means that we get inexact exceptions raised for nearbyint. Since this doesn't conform to the standard, switch this legalization to depend on unsafe fp math. | ||||
* | [PowerPC] Legalize rounding nodes | Nemanja Ivanovic | 2019-12-30 | 1 | -0/+561 |
VSX provides a full complement of rounding instructions yet we somehow ended up with some of them legal and others not. This just legalizes all of the FP rounding nodes and the FP -> int rounding nodes with unsafe math. Differential revision: https://reviews.llvm.org/D69949 |