2007-12-10 Till Straumann <strauman@slac.stanford.edu>

* new-exceptions/bspsupport/ppc_exc_test.c: fixed
	wrong type in argument (signed vs. unsigned)
	compiler warning.
This commit is contained in:
Till Straumann
2007-12-11 06:35:54 +00:00
parent a50260e8b0
commit b8982b581b
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2007-12-10 Till Straumann <strauman@slac.stanford.edu>
* new-exceptions/bspsupport/ppc_exc_test.c: fixed
wrong type in argument (signed vs. unsigned)
compiler warning.
2007-12-10 Till Straumann <strauman@slac.stanford.edu>
* Makefile.am: build new-exceptions/bspsupport for

View File

@@ -155,7 +155,7 @@ typedef union { uint32_t u; uint8_t c[4]; } u32_a_t;
/* exception handler; adds 1 to all register contents (except r1,r2,r13) */
int
handle_clobber_exc(BSP_Exception_frame *f, int vector)
handle_clobber_exc(BSP_Exception_frame *f, unsigned vector)
{
int i;
u32_a_t *p = (u32_a_t*)&f->GPR0;