From f77dca5d23764eb70a1e68f3da89e67427f5e529 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sat, 12 Nov 2011 09:20:58 -0800 Subject: ppc-linux: Fix call to _Unwind_SetGRPtr * config/rs6000/linux-unwind.h (frob_update_context): Properly cast the pointer argument to _Unwind_SetGRPtr. From-SVN: r181325 --- libgcc/config/rs6000/linux-unwind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgcc/config') diff --git a/libgcc/config/rs6000/linux-unwind.h b/libgcc/config/rs6000/linux-unwind.h index 20116326..13bf413 100644 --- a/libgcc/config/rs6000/linux-unwind.h +++ b/libgcc/config/rs6000/linux-unwind.h @@ -368,7 +368,7 @@ frob_update_context (struct _Unwind_Context *context, _Unwind_FrameState *fs ATT before the bctrl so this is the first and only place we need to use the stored R2. */ _Unwind_Word sp = _Unwind_GetGR (context, 1); - _Unwind_SetGRPtr (context, 2, sp + 40); + _Unwind_SetGRPtr (context, 2, (void *)(sp + 40)); } } } -- cgit v1.1