diff options
Diffstat (limited to 'llvm/test/CodeGen/CellSPU/dp_farith.ll')
-rw-r--r-- | llvm/test/CodeGen/CellSPU/dp_farith.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/CellSPU/dp_farith.ll b/llvm/test/CodeGen/CellSPU/dp_farith.ll index b0a372beba0..66bff3eb783 100644 --- a/llvm/test/CodeGen/CellSPU/dp_farith.ll +++ b/llvm/test/CodeGen/CellSPU/dp_farith.ll @@ -83,7 +83,7 @@ define double @d_fnms_2(double %arg1, double %arg2, double %arg3) { ; FNMS: - (a * b - c) => c - (a * b) define <2 x double> @d_fnms_vec_1(<2 x double> %arg1, <2 x double> %arg2, <2 x double> %arg3) { %A = fmul <2 x double> %arg1, %arg2 - %B = fsub <2 x double> %arg3, %A ; + %B = fsub <2 x double> %arg3, %A ret <2 x double> %B } |