PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr44194-2.c
blob23735bd85d631d4e728f255bd9c6f5e59e5fe288
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-rtl-dse1" } */
4 struct ints { int a, b, c; } foo();
5 void bar(int a, int b);
7 void func() {
8 volatile struct ints s = foo();
9 bar(s.a, s.b);
11 /* { dg-final { scan-rtl-dump "global deletions = 0" "dse1" } } */