Changeset db6cc07 in rtems


Ignore:
Timestamp:
03/08/02 17:36:58 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5800e142
Parents:
9d64bc73
Message:

2001-03-08 Joel Sherrill <joel@…>

  • mips-stub.c: Removed warnings.
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  
     12001-03-08      Joel Sherrill <joel@OARcorp.com>
     2
     3        * mips-stub.c: Removed warnings.
     4
    152001-03-05      Greg Menke <gregory.menke@gsfc.nasa.gov>
    26
  • c/src/lib/libbsp/mips/shared/gdbstub/mips-stub.c

    r9d64bc73 rdb6cc07  
    251251
    252252  /* Location, preserved data */
    253   unsigned *address;
     253  unsigned char *address;
    254254  unsigned instr;
    255255};
     
    692692doSStep (void)
    693693{
    694    struct z0break *z0;
    695694   InstFmt inst;
    696695
     
    12721271         {
    12731272            int ret, type, len;
    1274             unsigned *address;
     1273            unsigned char *address;
    12751274            struct z0break *z0;
    12761275
     
    13311330            z0->address = address;
    13321331
    1333             if( z0->address == frame->epc )
     1332            if( z0->address == (unsigned char *) frame->epc )
    13341333            {
    13351334               /* re-asserting the breakpoint that put us in here, so
     
    13991398            {
    14001399               int ret, type, len;
    1401                unsigned   *address;
     1400               unsigned char *address;
    14021401               struct z0break *z0;
    14031402             
Note: See TracChangeset for help on using the changeset viewer.