From 554fd8c5195424bdbcabf5de30fdc183aba391bd Mon Sep 17 00:00:00 2001 From: upstream source tree Date: Sun, 15 Mar 2015 20:14:05 -0400 Subject: obtained gcc-4.6.4.tar.bz2 from upstream website; verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository. --- gcc/testsuite/gcc.dg/weak/weak-3.c | 73 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 gcc/testsuite/gcc.dg/weak/weak-3.c (limited to 'gcc/testsuite/gcc.dg/weak/weak-3.c') diff --git a/gcc/testsuite/gcc.dg/weak/weak-3.c b/gcc/testsuite/gcc.dg/weak/weak-3.c new file mode 100644 index 000000000..748bd236c --- /dev/null +++ b/gcc/testsuite/gcc.dg/weak/weak-3.c @@ -0,0 +1,73 @@ +/* { dg-do compile } */ +/* { dg-require-alias "" } */ +/* { dg-require-weak "" } */ +/* { dg-options "-fno-common -Waddress" } */ + +/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?ffoo1a" } } */ +/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?ffoo1b" } } */ +/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?ffoo1c" } } */ +/* { dg-final { scan-assembler-not "weak\[^ \t\]*\[ \t\]_?ffoo1d" } } */ +/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?ffoo1e" } } */ +/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?ffoo1f" } } */ +/* { dg-final { scan-assembler "weak\[^ \t\]*\[ \t\]_?ffoo1g" } } */ + +/* test function addresses with __attribute__((weak)) */ + +extern void * ffoo1a (void) __attribute__((weak)); +extern void * ffoo1a (void); +void * foo1a (void) +{ + return (void *)ffoo1a; +} + + +extern void * ffoo1b (void); +extern void * ffoo1b (void) __attribute__((weak)); +void * foo1b (void) +{ + return (void *)ffoo1b; +} + + +extern void * ffoo1c (void); +void * foo1c (void) +{ + return (void *)ffoo1c; +} +extern void * ffoo1c (void) __attribute__((weak)); + + +int ffoo1d (void); +int ffoo1d (void) __attribute__((weak)); + + +extern void * ffoo1e (void); +extern void * ffoo1e (void) __attribute__((weak)); +void * foo1e (void) +{ + if (ffoo1e) + ffoo1e (); + return 0; +} + + +extern void * ffoo1f (void); +void * foo1f (void) +{ + if (ffoo1f) /* { dg-warning "" } */ + ffoo1f (); + return 0; +} +void * ffoox1f (void) { return (void *)0; } +extern void * ffoo1f (void) __attribute__((weak, alias ("ffoox1f"))); + + +extern void * ffoo1g (void); +void * ffoox1g (void) { return (void *)0; } +extern void * ffoo1g (void) __attribute__((weak, alias ("ffoox1g"))); +void * foo1g (void) +{ + if (ffoo1g) + ffoo1g (); + return 0; +} -- cgit v1.2.3