ubsan: z8k: index 10 out of bounds for type 'unsigned int const[10]'
[deliverable/binutils-gdb.git] / ld / testsuite / ld-i386 / pr19704a.c
1 #include <stdio.h>
2
3 extern int __attribute__ ((weak)) fun (void);
4
5 int
6 main (void)
7 {
8 if (&fun != 0)
9 fun ();
10 else
11 printf ("Weak undefined\n");
12 return 0;
13 }
This page took 0.029599 seconds and 4 git commands to generate.