aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Pinski <andrew.pinski@oss.qualcomm.com>2025-10-30 22:57:25 -0700
committerAndrew Pinski <andrew.pinski@oss.qualcomm.com>2025-10-30 22:58:57 -0700
commit127cd4064261868628b787a8abc3d9f9c8af14dc (patch)
tree0491e50f567382af2180d44af4e2412b68406eac
parent7b9d32aa2ffcb5b02643b280c8404020c1e9d6b2 (diff)
downloadgcc-127cd4064261868628b787a8abc3d9f9c8af14dc.zip
gcc-127cd4064261868628b787a8abc3d9f9c8af14dc.tar.gz
gcc-127cd4064261868628b787a8abc3d9f9c8af14dc.tar.bz2
Fix pr122478.c testcase
The problem here is the dump file and the number of times the match should happen is swapped. Pushed as obvious. gcc/testsuite/ChangeLog: * gcc.dg/tree-ssa/pr122478.c: Swap `1` and `"optimized"`. Signed-off-by: Andrew Pinski <andrew.pinski@oss.qualcomm.com>
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/pr122478.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr122478.c b/gcc/testsuite/gcc.dg/tree-ssa/pr122478.c
index bc63f71..a39c91b 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/pr122478.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/pr122478.c
@@ -14,4 +14,4 @@ __BB(2):
return _180;
}
-/* { dg-final { scan-tree-dump-times "VIEW_CONVERT_EXPR" "optimized" 1 } } */
+/* { dg-final { scan-tree-dump-times "VIEW_CONVERT_EXPR" 1 "optimized" } } */