From 0d238f71501aa2c010a173bd96af3b93e875aecc Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 30 Oct 2002 20:25:55 +0000 Subject: [PATCH] Powerpc instruction pointer is Iar, not Eip. --- dlls/ntdll/signal_powerpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/signal_powerpc.c b/dlls/ntdll/signal_powerpc.c index 30acb6238f7..d8f302dce89 100644 --- a/dlls/ntdll/signal_powerpc.c +++ b/dlls/ntdll/signal_powerpc.c @@ -395,7 +395,7 @@ static HANDLER_DEF(abrt_handler) rec.ExceptionCode = EXCEPTION_WINE_ASSERTION; rec.ExceptionFlags = EH_NONCONTINUABLE; rec.ExceptionRecord = NULL; - rec.ExceptionAddress = (LPVOID)context.Eip; + rec.ExceptionAddress = (LPVOID)context.Iar; rec.NumberParameters = 0; EXC_RtlRaiseException( &rec, &context ); /* Should never return.. */ restore_context( &context, HANDLER_CONTEXT );