mirror of git://sourceware.org/git/glibc.git
* sysdeps/generic/unwind-dw2.c (_Unwind_GetCFA): Add a cast to silence
compiler warning. * sysdeps/generic/unwind-pe.h: Fix decl hacks broken in merge.
This commit is contained in:
parent
06c1509610
commit
8133a3fd77
|
|
@ -1,3 +1,10 @@
|
||||||
|
2003-04-14 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/generic/unwind-dw2.c (_Unwind_GetCFA): Add a cast to silence
|
||||||
|
compiler warning.
|
||||||
|
|
||||||
|
* sysdeps/generic/unwind-pe.h: Fix decl hacks broken in merge.
|
||||||
|
|
||||||
2003-04-14 Ulrich Drepper <drepper@redhat.com>
|
2003-04-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* string/strxfrm.c (STRXFRM): Terminate rulearr at correct
|
* string/strxfrm.c (STRXFRM): Terminate rulearr at correct
|
||||||
|
|
|
||||||
|
|
@ -184,7 +184,7 @@ _Unwind_GetGR (struct _Unwind_Context *context, int index)
|
||||||
_Unwind_Word
|
_Unwind_Word
|
||||||
_Unwind_GetCFA (struct _Unwind_Context *context)
|
_Unwind_GetCFA (struct _Unwind_Context *context)
|
||||||
{
|
{
|
||||||
return context->cfa;
|
return (_Unwind_Word) context->cfa;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Overwrite the saved value for register REG in CONTEXT with VAL. */
|
/* Overwrite the saved value for register REG in CONTEXT with VAL. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue