From e782a927c24430100bf2008c96cd421a70285a7e Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 1 Feb 2013 06:35:29 +0000 Subject: Remove BOUNDED_N and BOUNDED_1. --- sysdeps/powerpc/powerpc32/backtrace.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sysdeps/powerpc/powerpc32/backtrace.c') diff --git a/sysdeps/powerpc/powerpc32/backtrace.c b/sysdeps/powerpc/powerpc32/backtrace.c index b1b4b8e10d..cd04450337 100644 --- a/sysdeps/powerpc/powerpc32/backtrace.c +++ b/sysdeps/powerpc/powerpc32/backtrace.c @@ -18,7 +18,6 @@ #include #include -#include /* This is the stack layout we see with every stack frame. Note that every routine is required by the ABI to lay out the stack @@ -47,11 +46,10 @@ __backtrace (void **array, int size) /* Get the address on top-of-stack. */ asm volatile ("lwz %0,0(1)" : "=r"(current)); - current = BOUNDED_1 (current); for ( count = 0; current != NULL && count < size; - current = BOUNDED_1 (current->next), count++) + current = current->next, count++) array[count] = current->return_address; /* It's possible the second-last stack frame can't return -- cgit 1.4.1