aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorIndu Bhagat <indu.bhagat@oracle.com>2023-06-27 11:55:38 -0700
committerIndu Bhagat <indu.bhagat@oracle.com>2023-06-27 12:01:56 -0700
commit49e4485cba2fa322a649b39c8a05dae8b421331d (patch)
tree9e2d27727724e7c7fca2a03ebf8977ac3ad8932c /bfd
parent100d405dae25ed30fd823ab78a7db59303494b6f (diff)
downloadfsf-binutils-gdb-49e4485cba2fa322a649b39c8a05dae8b421331d.zip
fsf-binutils-gdb-49e4485cba2fa322a649b39c8a05dae8b421331d.tar.gz
fsf-binutils-gdb-49e4485cba2fa322a649b39c8a05dae8b421331d.tar.bz2
libsframe: bfd: use uint32_t for return type of sframe_calc_fre_type
Use uint32_t type alias consistently for all APIs in libsframe. bfd/ * elfxx-x86.c (_bfd_x86_elf_create_sframe_plt): Adjust for the changed return type. libsframe/ * sframe.c (sframe_calc_fre_type): Use uint32_t for return type. include/ * sframe-api.h (sframe_calc_fre_type): Likewise.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/elfxx-x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elfxx-x86.c b/bfd/elfxx-x86.c
index 8e13a92..ffd02f1 100644
--- a/bfd/elfxx-x86.c
+++ b/bfd/elfxx-x86.c
@@ -1832,7 +1832,7 @@ _bfd_x86_elf_create_sframe_plt (bfd *output_bfd,
bool plt0_generated_p;
unsigned int plt0_entry_size;
unsigned char func_info;
- unsigned int fre_type;
+ uint32_t fre_type;
/* The dynamic plt section for which .sframe stack trace information is being
created. */
asection *dpltsec;