c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr36400.c
blob8d21ef84791309de102348e7f79135e594113d54
1 /* { dg-do compile } */
2 /* { dg-options "-ffat-lto-objects" } */
4 struct barstruct { char const* some_string; };
6 void changethepointer(struct barstruct***);
8 void baz()
10 struct barstruct bar1;
11 struct barstruct* barptr = &bar1;
12 struct barstruct** barptr2 = &barptr;
13 changethepointer(&barptr2);
14 barptr->some_string = "Everything OK";
17 /* { dg-final { scan-assembler "Everything OK" { xfail nvptx-*-* pdp11-*-* } } } */