3e0882af52
bfd/ 2011-10-08 H.J. Lu <hongjiu.lu@intel.com> PR ld/13250 * elflink.c (elf_link_add_object_symbols): Preserve the maximum alignment and size for common symbols. ld/testsuite/ 2011-10-08 H.J. Lu <hongjiu.lu@intel.com> PR ld/13250 * ld-elf/shared.exp (build_tests): Add tests for PR ld/13250. (run_tests): Likewise. * ld-elf/pr13250-1.c: New. * ld-elf/pr13250-2.c: Likewise. * ld-elf/pr13250-3.c: Likewise.
10 lines
91 B
C
10 lines
91 B
C
extern int common1[8];
|
|
|
|
extern void foo ();
|
|
|
|
int
|
|
bar ()
|
|
{
|
|
foo ();
|
|
return common1[4];
|
|
}
|