Changeset db6cc07 in rtems
- Timestamp:
- 03/08/02 17:36:58 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5800e142
- Parents:
- 9d64bc73
- Location:
- c/src/lib/libbsp/mips/shared/gdbstub
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/mips/shared/gdbstub/ChangeLog
r9d64bc73 rdb6cc07 1 2001-03-08 Joel Sherrill <joel@OARcorp.com> 2 3 * mips-stub.c: Removed warnings. 4 1 5 2001-03-05 Greg Menke <gregory.menke@gsfc.nasa.gov> 2 6 -
c/src/lib/libbsp/mips/shared/gdbstub/mips-stub.c
r9d64bc73 rdb6cc07 251 251 252 252 /* Location, preserved data */ 253 unsigned *address;253 unsigned char *address; 254 254 unsigned instr; 255 255 }; … … 692 692 doSStep (void) 693 693 { 694 struct z0break *z0;695 694 InstFmt inst; 696 695 … … 1272 1271 { 1273 1272 int ret, type, len; 1274 unsigned *address;1273 unsigned char *address; 1275 1274 struct z0break *z0; 1276 1275 … … 1331 1330 z0->address = address; 1332 1331 1333 if( z0->address == frame->epc )1332 if( z0->address == (unsigned char *) frame->epc ) 1334 1333 { 1335 1334 /* re-asserting the breakpoint that put us in here, so … … 1399 1398 { 1400 1399 int ret, type, len; 1401 unsigned 1400 unsigned char *address; 1402 1401 struct z0break *z0; 1403 1402
Note: See TracChangeset
for help on using the changeset viewer.