diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-01 06:35:29 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-01 06:35:29 +0000 |
commit | e782a927c24430100bf2008c96cd421a70285a7e (patch) | |
tree | ca91c08070e38fa5c2c9ed085f4835eb5ab3704b /sysdeps/sparc/backtrace.c | |
parent | 3a7ac8a0f596bb73093212cd1109c1413777e1f8 (diff) | |
download | glibc-e782a927c24430100bf2008c96cd421a70285a7e.tar.gz glibc-e782a927c24430100bf2008c96cd421a70285a7e.tar.xz glibc-e782a927c24430100bf2008c96cd421a70285a7e.zip |
Remove BOUNDED_N and BOUNDED_1.
Diffstat (limited to 'sysdeps/sparc/backtrace.c')
-rw-r--r-- | sysdeps/sparc/backtrace.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sysdeps/sparc/backtrace.c b/sysdeps/sparc/backtrace.c index 89f976b06c..a0ba1fdfd7 100644 --- a/sysdeps/sparc/backtrace.c +++ b/sysdeps/sparc/backtrace.c @@ -19,7 +19,6 @@ #include <execinfo.h> #include <stddef.h> -#include <bp-checks.h> #include <sysdep.h> #include <sys/trap.h> #include <dlfcn.h> @@ -129,7 +128,6 @@ __backtrace (void **array, int size) asm volatile ("mov %%fp, %0" : "=r"(fp)); asm volatile ("mov %%i7, %0" : "=r"(i7)); current = (struct layout *__unbounded) (fp + BACKTRACE_STACK_BIAS); - current = BOUNDED_1 (current); array[0] = (void *__unbounded) i7; @@ -144,7 +142,6 @@ __backtrace (void **array, int size) break; current = (struct layout *__unbounded) (current->next + BACKTRACE_STACK_BIAS); - current = BOUNDED_1 (current); } } else |