PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / ipa / propbits-1.c
blob8ec372d81f075146d7510676c04d7ddbfc2b354b
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-early-inlining -fdump-ipa-cp" } */
4 __attribute__((noinline))
5 static int f(int x)
7 int some_op(int);
8 return some_op (x);
11 int main(void)
13 int a = f(1);
14 int b = f(2);
15 int c = f(4);
16 return a + b + c;
19 /* { dg-final { scan-ipa-dump "Adjusting mask for param 0 to 0x7" "cp" } } */