1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Remove BOUNDED_N and BOUNDED_1.

This commit is contained in:
Joseph Myers
2013-02-01 06:35:29 +00:00
parent 3a7ac8a0f5
commit e782a927c2
7 changed files with 24 additions and 24 deletions

View File

@ -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