mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
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:
@@ -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>
|
2007-12-10 Till Straumann <strauman@slac.stanford.edu>
|
||||||
|
|
||||||
* Makefile.am: build new-exceptions/bspsupport for
|
* Makefile.am: build new-exceptions/bspsupport for
|
||||||
|
|||||||
@@ -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) */
|
/* exception handler; adds 1 to all register contents (except r1,r2,r13) */
|
||||||
int
|
int
|
||||||
handle_clobber_exc(BSP_Exception_frame *f, int vector)
|
handle_clobber_exc(BSP_Exception_frame *f, unsigned vector)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
u32_a_t *p = (u32_a_t*)&f->GPR0;
|
u32_a_t *p = (u32_a_t*)&f->GPR0;
|
||||||
|
|||||||
Reference in New Issue
Block a user