ffi.c (ffi_prep_closure_loc): Turn INSN into an unsigned int.

* src/sh/ffi.c (ffi_prep_closure_loc): Turn INSN into an unsigned
	int.

From-SVN: r137883
This commit is contained in:
Kaz Kojima 2008-07-16 13:57:35 +00:00
parent 61945d8cd9
commit 130f4c504c
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-07-16 Kaz Kojima <kkojima@gcc.gnu.org>
* src/sh/ffi.c (ffi_prep_closure_loc): Turn INSN into an unsigned
int.
2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure: Regenerate.

View File

@ -1,5 +1,6 @@
/* -----------------------------------------------------------------------
ffi.c - Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007 Kaz Kojima
ffi.c - Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
Kaz Kojima
SuperH Foreign Function Interface
@ -459,7 +460,7 @@ ffi_prep_closure_loc (ffi_closure* closure,
void *codeloc)
{
unsigned int *tramp;
unsigned short insn;
unsigned int insn;
FFI_ASSERT (cif->abi == FFI_GCC_SYSV);