mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-07 13:39:43 +08:00
* sim-base.h (text_start, text_end, start_addr): Use bfd_vma type
for bfd text addresses.
This commit is contained in:
parent
645f81233b
commit
7e12978101
@ -1,3 +1,8 @@
|
||||
2006-11-07 Thiemo Seufer <ths@mips.com>
|
||||
|
||||
* sim-base.h (text_start, text_end, start_addr): Use bfd_vma type
|
||||
for bfd text addresses.
|
||||
|
||||
2006-08-29 Thiemo Seufer <ths@mips.com>
|
||||
Nigel Stephens <nigel@mips.com>
|
||||
|
||||
|
@ -181,13 +181,13 @@ typedef struct {
|
||||
/* The program's text section. */
|
||||
struct bfd_section *text_section;
|
||||
/* Starting and ending text section addresses from the bfd. */
|
||||
SIM_ADDR text_start, text_end;
|
||||
bfd_vma text_start, text_end;
|
||||
#define STATE_TEXT_SECTION(sd) ((sd)->base.text_section)
|
||||
#define STATE_TEXT_START(sd) ((sd)->base.text_start)
|
||||
#define STATE_TEXT_END(sd) ((sd)->base.text_end)
|
||||
|
||||
/* Start address, set when the program is loaded from the bfd. */
|
||||
SIM_ADDR start_addr;
|
||||
bfd_vma start_addr;
|
||||
#define STATE_START_ADDR(sd) ((sd)->base.start_addr)
|
||||
|
||||
/* Size of the simulator's cache, if any.
|
||||
|
Loading…
Reference in New Issue
Block a user