From ce4a00e29c71f2f51d52f407ecd265fa40688586 Mon Sep 17 00:00:00 2001 From: Richard Biener Date: Mon, 27 Mar 2023 14:22:56 +0200 Subject: [PATCH] tree-optimization/108357 - add testcase The following adds the testcase for the bug which was recently fixed. PR tree-optimization/108357 * gcc.dg/tree-ssa/pr108357.c: New testcase. --- gcc/testsuite/gcc.dg/tree-ssa/pr108357.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr108357.c diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr108357.c b/gcc/testsuite/gcc.dg/tree-ssa/pr108357.c new file mode 100644 index 000000000000..44c457b7a977 --- /dev/null +++ b/gcc/testsuite/gcc.dg/tree-ssa/pr108357.c @@ -0,0 +1,22 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -fdump-tree-threadfull1" } */ + +static char b; +static unsigned c; +void foo(); +short(a)(short d, short e) { return d * e; } +static short f(short d) { + b = 0; + if ((d && 0 >= c < d) ^ d) + ; + else + foo(); + return d; +} +int main() +{ + short g = a(5, b ^ 9854); + f(g); +} + +/* { dg-final { scan-tree-dump-not "foo" "threadfull1" } } */ -- 2.47.2