diff options
author | Andrew Pinski <quic_apinski@quicinc.com> | 2024-08-30 09:53:01 -0700 |
---|---|---|
committer | Andrew Pinski <quic_apinski@quicinc.com> | 2024-08-31 09:16:40 -0700 |
commit | 457805cf5969c8a9a04f0c6e626946d952163929 (patch) | |
tree | fd361310df865c93adb47b520bff006fb4081d4c | |
parent | 79b5b50402454dd1c217c8e2e21ce85aa35e4f1b (diff) | |
download | gcc-457805cf5969c8a9a04f0c6e626946d952163929.zip gcc-457805cf5969c8a9a04f0c6e626946d952163929.tar.gz gcc-457805cf5969c8a9a04f0c6e626946d952163929.tar.bz2 |
testsuite: Change what is being tested for pr66726-2.c
r14-575-g6d6c17e45f62cf changed the debug dump message but the testcase
pr66726-2.c was not updated for the change. The testcase was searching to
make sure we didn't factor out a conversion but the testcase was no longer
testing that so we needed to update what was being searched for.
Tested on x86_64-linux.
gcc/testsuite/ChangeLog:
* gcc.dg/tree-ssa/pr66726-2.c: Update scan dump message.
Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
-rw-r--r-- | gcc/testsuite/gcc.dg/tree-ssa/pr66726-2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr66726-2.c b/gcc/testsuite/gcc.dg/tree-ssa/pr66726-2.c index ab43d48..a59a643 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/pr66726-2.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/pr66726-2.c @@ -16,4 +16,4 @@ foo (char b) return a + b; } -/* { dg-final { scan-tree-dump-times "factor conversion out" 0 "phiopt1" } } */ +/* { dg-final { scan-tree-dump-times "factor operation out" 0 "phiopt1" } } */ |