ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/nvptx/weak.c

10 lines
151 B
C

extern int __attribute__((weak)) decl; /* { dg-error "weak declarations" } */
int __attribute__((weak)) defn;
int Foo ()
{
return decl + defn;
}