diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-23 05:02:41 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-23 05:41:34 -0400 |
commit | aafd587b8ba7d54a04f8acb32f5533820638ba2b (patch) | |
tree | 6dbbdfcfcc3dd4720c2778dbf517c74bb0b646e6 /libc/sysdeps/linux/bfin/crtreloc.c | |
parent | c783cce0b040d32dc24aa6b99831287f46659458 (diff) |
Blackfin: fix incorrect attribute order
The order of attributes in a function definition matters and in a few
places in the Blackfin code, it was being applied to the return type
instead of the function itself.
In file included from ldso/ldso/ldso.c:43:
ldso/ldso/bfin/elfinterp.c: At top level:
ldso/ldso/bfin/elfinterp.c:42: warning: '__visibility__' attribute ignored on non-class types
In file included from ldso/ldso/bfin/elfinterp.c:341,
from ldso/ldso/ldso.c:43:
libc/sysdeps/linux/bfin/crtreloc.c: At top level:
libc/sysdeps/linux/bfin/crtreloc.c:91: warning: 'visibility' attribute ignored on non-class types
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'libc/sysdeps/linux/bfin/crtreloc.c')
-rw-r--r-- | libc/sysdeps/linux/bfin/crtreloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/bfin/crtreloc.c b/libc/sysdeps/linux/bfin/crtreloc.c index 408ded2f8..a44b50ba4 100644 --- a/libc/sysdeps/linux/bfin/crtreloc.c +++ b/libc/sysdeps/linux/bfin/crtreloc.c @@ -85,7 +85,7 @@ reloc_range_indirect (void ***p, void ***e, /* Call __reloc_range_indirect for the given range except for the last entry, whose contents are only relocated. It's expected to hold the GOT value. */ -void* attribute_hidden +attribute_hidden void* __self_reloc (const struct elf32_fdpic_loadmap *map, void ***p, void ***e) { |