PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / alias-15.c
blob0a8e69b61eceef95e61f16d7874b5a4204e0594f
1 /* { dg-do compile } */
2 /* { dg-additional-options "-O2 -fdump-ipa-cgraph" } */
4 /* RTL-level CSE shouldn't introduce LCO (for the string) into varpool */
5 char *p;
7 void foo ()
9 p = "abc\n";
11 while (*p != '\n')
12 p++;
15 /* { dg-final { scan-ipa-dump-not "LC0" "cgraph" } } */