mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 23:23:09 +00:00
libsframe: bfd: use uint32_t for return type of get_num_fidx APIs
Keep the data types usage in libsframe look consistent. bfd/ * elf-sframe.c (_bfd_elf_merge_section_sframe): Use uint32_t type alias. * libsframe/sframe.c (sframe_decoder_get_funcdesc_at_index): Likewise. (sframe_decoder_get_num_fidx): Likewise. (sframe_encoder_get_num_fidx): Likewise. include/ * sframe-api.h (sframe_decoder_get_num_fidx): Likewise. (sframe_encoder_get_num_fidx): Likewise.
This commit is contained in:
@@ -122,7 +122,7 @@ sframe_decoder_get_abi_arch (sframe_decoder_ctx *dctx);
|
||||
|
||||
/* Return the number of function descriptor entries in the SFrame decoder
|
||||
DCTX. */
|
||||
extern unsigned int
|
||||
extern uint32_t
|
||||
sframe_decoder_get_num_fidx (sframe_decoder_ctx *dctx);
|
||||
|
||||
/* Get the fixed FP offset from the decoder context DCTX. */
|
||||
@@ -219,7 +219,7 @@ sframe_encoder_get_abi_arch (sframe_encoder_ctx *encoder);
|
||||
|
||||
/* Return the number of function descriptor entries in the SFrame encoder
|
||||
ENCODER. */
|
||||
extern unsigned int
|
||||
extern uint32_t
|
||||
sframe_encoder_get_num_fidx (sframe_encoder_ctx *encoder);
|
||||
|
||||
/* Add an FRE to function at FUNC_IDX'th function descriptor index entry in
|
||||
|
||||
Reference in New Issue
Block a user