diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-01-04 01:06:04 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-01-04 01:06:04 +0000 |
commit | 2b18fe78fe7217430ed42d3284636c732793e352 (patch) | |
tree | cabb27b5847b495259a8e565cccb703fac83a0ce | |
parent | 785fcbaef39a82f7bf2e60de0b10df0f2f09a6d9 (diff) | |
download | glibc-2b18fe78fe7217430ed42d3284636c732793e352.tar.gz |
Fix MicroBlaze __backtrace get_frame_size namespace (bug 21022).
Many linknamespace tests fail for MicroBlaze because __backtrace (as
brought in by libc_fatal.c) uses an inline function get_frame_size
which is not declared static. This patch fixes it to be declared
static.
Tested (compilation tests) with build-many-glibcs.py.
[BZ #21022]
* sysdeps/microblaze/backtrace.c (get_frame_size): Make static.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/microblaze/backtrace.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2017-01-04 Joseph Myers <joseph@codesourcery.com> + + [BZ #21022] + * sysdeps/microblaze/backtrace.c (get_frame_size): Make static. + 2017-01-03 Joseph Myers <joseph@codesourcery.com> * sysdeps/i386/fpu/libm-test-ulps: Update. diff --git a/sysdeps/microblaze/backtrace.c b/sysdeps/microblaze/backtrace.c index 2b498f01ce..7cc28ff146 100644 --- a/sysdeps/microblaze/backtrace.c +++ b/sysdeps/microblaze/backtrace.c @@ -27,7 +27,7 @@ _identify_sighandler (unsigned long fp, unsigned long pc, unsigned long *pprev_fp, unsigned long *pprev_pc, unsigned long *retaddr); -inline long +static inline long get_frame_size (unsigned long instr) { return abs ((short signed) (instr & 0xFFFF)); |