Fortran: fix ALLOCATE with SOURCE of deferred character length [PR114019]
[official-gcc.git] / gcc / testsuite / gcc.dg / alias-15.c
blob304ad1fbaeb7fe68ef26efd31c2ee545db6a0ffc
1 /* { dg-do compile } */
2 /* { dg-additional-options "-O2 -fcommon -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" } } */