[PATCH] D62069: [NFC][InstSImplify] Fix flip-flopped comments and test names
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 17 11:02:16 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL361057: [NFC][InstSImplify] Fix flip-flopped comments and test names (authored by mcinally, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D62069?vs=200060&id=200064#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D62069/new/
https://reviews.llvm.org/D62069
Files:
llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll
Index: llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll
===================================================================
--- llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll
+++ llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll
@@ -46,9 +46,9 @@
ret <2 x float> %ret
}
-; fsub 0.0, (fsub -0.0, X) != X
-define float @fsub_0_-0_x(float %a) {
-; CHECK-LABEL: @fsub_0_-0_x(
+; fsub -0.0, (fsub 0.0, X) != X
+define float @fsub_-0_0_x(float %a) {
+; CHECK-LABEL: @fsub_-0_0_x(
; CHECK-NEXT: [[T1:%.*]] = fsub float 0.000000e+00, [[A:%.*]]
; CHECK-NEXT: [[RET:%.*]] = fsub float -0.000000e+00, [[T1]]
; CHECK-NEXT: ret float [[RET]]
@@ -58,9 +58,9 @@
ret float %ret
}
-; fsub -0.0, (fsub 0.0, X) != X
-define float @fsub_-0_0_x(float %a) {
-; CHECK-LABEL: @fsub_-0_0_x(
+; fsub 0.0, (fsub -0.0, X) != X
+define float @fsub_0_-0_x(float %a) {
+; CHECK-LABEL: @fsub_0_-0_x(
; CHECK-NEXT: [[T1:%.*]] = fsub float -0.000000e+00, [[A:%.*]]
; CHECK-NEXT: [[RET:%.*]] = fsub float 0.000000e+00, [[T1]]
; CHECK-NEXT: ret float [[RET]]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62069.200064.patch
Type: text/x-patch
Size: 1120 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190517/a00943c7/attachment.bin>
More information about the llvm-commits
mailing list