diff options
author | Yao Qi <yao@codesourcery.com> | 2014-01-02 11:02:56 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-01-07 10:28:06 +0800 |
commit | 94123b4f917eb03353fa46a43ea1fd7c37f3fb55 (patch) | |
tree | 2f69debc666e234e6c67f3c68e841a2f661c3ca1 /gdb/gdbarch.h | |
parent | 831883073995ff46717fa4918340e253f1c1d772 (diff) | |
download | gdb-94123b4f917eb03353fa46a43ea1fd7c37f3fb55.zip gdb-94123b4f917eb03353fa46a43ea1fd7c37f3fb55.tar.gz gdb-94123b4f917eb03353fa46a43ea1fd7c37f3fb55.tar.bz2 |
Use enum bfd_endian in gdbarch.sh
This patch changes the return type of gdbarch_byte_order and
gdbarch_byte_order_for_code, from 'int' to 'enum bfd_endian'.
gdb:
2014-01-07 Yao Qi <yao@codesourcery.com>
* gdbarch.sh (byte_order, byte_order_for_code): Change type to
'enum bfd_endian'.
(struct gdbarch_info) <byte_order>: Change type to
'enum bfd_endian'.
<byte_order_for_code>: Likewise.
* gdbarch.c, gdbarch.h: Regenerated.
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index fd96a7e..ccb7e96 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -91,10 +91,10 @@ typedef int (iterate_over_objfiles_in_search_order_cb_ftype) extern const struct bfd_arch_info * gdbarch_bfd_arch_info (struct gdbarch *gdbarch); /* set_gdbarch_bfd_arch_info() - not applicable - pre-initialized. */ -extern int gdbarch_byte_order (struct gdbarch *gdbarch); +extern enum bfd_endian gdbarch_byte_order (struct gdbarch *gdbarch); /* set_gdbarch_byte_order() - not applicable - pre-initialized. */ -extern int gdbarch_byte_order_for_code (struct gdbarch *gdbarch); +extern enum bfd_endian gdbarch_byte_order_for_code (struct gdbarch *gdbarch); /* set_gdbarch_byte_order_for_code() - not applicable - pre-initialized. */ extern enum gdb_osabi gdbarch_osabi (struct gdbarch *gdbarch); @@ -1342,9 +1342,9 @@ struct gdbarch_info const struct bfd_arch_info *bfd_arch_info; /* Use default: BFD_ENDIAN_UNKNOWN (NB: is not ZERO). */ - int byte_order; + enum bfd_endian byte_order; - int byte_order_for_code; + enum bfd_endian byte_order_for_code; /* Use default: NULL (ZERO). */ bfd *abfd; |