1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

[PowerPC] Fix typo in rL372985

llvm-svn: 372991
This commit is contained in:
Jinsong Ji 2019-09-26 15:49:11 +00:00
parent 72db08839a
commit a533429dfb

View File

@ -1515,7 +1515,7 @@ let AddedComplexity = 400 in { // Prefer VSX patterns over non-VSX patterns.
// Additional xsnmsubasp patterns: -a*b + c == -(a*b - c)
def : Pat<(fma (fneg f32:$A), f32:$B, f32:$C),
(XSNMSUBASP $C, $A, $B)>;
def : Pat<(fma f32:$A, (fneg f32:$C), f32:$B),
def : Pat<(fma f32:$A, (fneg f32:$B), f32:$C),
(XSNMSUBASP $C, $A, $B)>;
// Single Precision Conversions (FP <-> INT)