1 /* PR34985: Warning "defined but not used" despite __attribute__((__used__)) */ 2 /* { dg-do compile } */ 3 /* { dg-options "-Wall -Wextra -O2" } */ 4 static void xxyyzz (void); xxyyzz(void)5static void __attribute__((__used__)) xxyyzz(void) 6 { 7 } 8 9 /* { dg-final { scan-assembler "xxyyzz" } } */ 10