From f5fd3c39dcec944feb8aa91808a8cb8d94dd1e04 Mon Sep 17 00:00:00 2001 From: Anton Vorontsov Date: Sat, 28 Nov 2009 01:33:39 +0300 Subject: Rename stack-ppc64.c to stack-ppc.c There should be no functional changes in this patch. Signed-off-by: Anton Vorontsov --- runtime/stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/stack.c') diff --git a/runtime/stack.c b/runtime/stack.c index 042f44c7..ae899950 100644 --- a/runtime/stack.c +++ b/runtime/stack.c @@ -41,7 +41,7 @@ static void _stp_stack_print_fallback(unsigned long, int, int); #elif defined (__i386__) #include "stack-i386.c" #elif defined (__powerpc64__) -#include "stack-ppc64.c" +#include "stack-ppc.c" #elif defined (__arm__) #include "stack-arm.c" #elif defined (__s390__) || defined (__s390x__) -- cgit From 51280c12d044b671b16ce59396658ac5a0f24650 Mon Sep 17 00:00:00 2001 From: Anton Vorontsov Date: Sat, 28 Nov 2009 01:33:42 +0300 Subject: stack-ppc: Adjust for ppc32 Get rid of magic numbers, use appropriate defines from ptrace.h. From now on stack-ppc.c should be suitable for ppc32. Signed-off-by: Anton Vorontsov --- runtime/stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/stack.c') diff --git a/runtime/stack.c b/runtime/stack.c index ae899950..25dbdbbd 100644 --- a/runtime/stack.c +++ b/runtime/stack.c @@ -40,7 +40,7 @@ static void _stp_stack_print_fallback(unsigned long, int, int); #include "stack-ia64.c" #elif defined (__i386__) #include "stack-i386.c" -#elif defined (__powerpc64__) +#elif defined (__powerpc__) #include "stack-ppc.c" #elif defined (__arm__) #include "stack-arm.c" -- cgit