diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-08-30 00:02:19 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-08-30 00:02:19 +0000 |
commit | f90b720ba1b70759feea3b3a130a6f8b01709d68 (patch) | |
tree | d1fc6c8386824a06ccb4d5d9042110ede99b0f6a /sim/common/sim-events.h | |
parent | 4113ba4cd75baf802d84cb32f5d500082673ef41 (diff) | |
download | gdb-f90b720ba1b70759feea3b3a130a6f8b01709d68.zip gdb-f90b720ba1b70759feea3b3a130a6f8b01709d68.tar.gz gdb-f90b720ba1b70759feea3b3a130a6f8b01709d68.tar.bz2 |
Passify GCC. Convert 0x0LL to something more portable in the FP code.
Diffstat (limited to 'sim/common/sim-events.h')
-rw-r--r-- | sim/common/sim-events.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/sim/common/sim-events.h b/sim/common/sim-events.h index fffde47..dd69f0a 100644 --- a/sim/common/sim-events.h +++ b/sim/common/sim-events.h @@ -153,8 +153,9 @@ EXTERN_SIM_EVENTS\ void *data); -/* Schedule an event when the NR_BYTES value at HOST_ADDR with - BYTE_ORDER lies within LB..UB (unsigned). +/* Schedule an event when the test (IS_WITHIN == (VAL >= LB && VAL <= + UB)) of the NR_BYTES value at HOST_ADDR with BYTE_ORDER endian is + true. HOST_ADDR: pointer into the host address space. BYTE_ORDER: 0 - host endian; BIG_ENDIAN; LITTLE_ENDIAN */ @@ -165,14 +166,16 @@ EXTERN_SIM_EVENTS\ void *host_addr, int nr_bytes, int byte_order, + int is_within, unsigned64 lb, unsigned64 ub, sim_event_handler *handler, void *data); -/* Schedule an event when the NR_BYTES value at CORE_ADDR with BYTE_ORDER - lies between LB..UB. +/* Schedule an event when the test (IS_WITHIN == (VAL >= LB && VAL <= + UB)) of the NR_BYTES value at CORE_ADDR in BYTE_ORDER endian is + true. CORE_ADDR/MAP: pointer into the target address space. BYTE_ORDER: 0 - current target endian; BIG_ENDIAN; LITTLE_ENDIAN */ @@ -184,6 +187,7 @@ EXTERN_SIM_EVENTS\ sim_core_maps core_map, int nr_bytes, int byte_order, + int is_within, unsigned64 lb, unsigned64 ub, sim_event_handler *handler, @@ -216,7 +220,7 @@ INLINE_SIM_EVENTS\ /* Progress time - separated into two parts so that the main loop can save its context before the event queue is processed. - sim_events_tickn advances the clock by N cycles. */ + sim_events_tickn advances the clock by N cycles (1..MAXINT) */ INLINE_SIM_EVENTS\ (int) sim_events_tick @@ -225,7 +229,7 @@ INLINE_SIM_EVENTS\ INLINE_SIM_EVENTS\ (int) sim_events_tickn (SIM_DESC sd, - unsigned n); + int n); INLINE_SIM_EVENTS\ (void) sim_events_process |