1 /* { dg-do assemble } */ 2 /* { dg-require-weak "" } */ 3 4 __attribute__ ((weak)) int i; 5 f()6 int f() { 7 return i; 8 } 9