aboutsummaryrefslogtreecommitdiff
path: root/libsframe
diff options
context:
space:
mode:
authorIndu Bhagat <indu.bhagat@oracle.com>2023-06-06 10:50:07 -0700
committerIndu Bhagat <indu.bhagat@oracle.com>2023-06-06 10:50:07 -0700
commitf4af42724b8c968c355796b561434250aa605458 (patch)
treec9ba4cc849c716a0c0e08a978f4ea7043a9c15d2 /libsframe
parentd3f340763bab7c74838ebb481fd7ff93acd9f00c (diff)
downloadbinutils-f4af42724b8c968c355796b561434250aa605458.zip
binutils-f4af42724b8c968c355796b561434250aa605458.tar.gz
binutils-f4af42724b8c968c355796b561434250aa605458.tar.bz2
libsframe: fix cosmetic issues and typos
include/ * sframe-api.h (sframe_decoder_get_num_fidx): Use extern. libsframe/ * sframe-dump.c (dump_sframe_func_with_fres): Fix line length. * sframe.c (sframe_frame_row_entry_copy): Likewise. (sframe_decode_fre_start_address): Use the intended type uint32_t.
Diffstat (limited to 'libsframe')
-rw-r--r--libsframe/sframe-dump.c5
-rw-r--r--libsframe/sframe.c5
2 files changed, 6 insertions, 4 deletions
diff --git a/libsframe/sframe-dump.c b/libsframe/sframe-dump.c
index 77aa87d..6d26639 100644
--- a/libsframe/sframe-dump.c
+++ b/libsframe/sframe-dump.c
@@ -2,7 +2,7 @@
Copyright (C) 2022-2023 Free Software Foundation, Inc.
- his file is part of libsframe.
+ This file is part of libsframe.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -134,7 +134,8 @@ dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx,
char temp[100];
- printf ("\n %-7s%-8s %-10s%-10s%-13s", "STARTPC", fde_type_marker, "CFA", "FP", "RA");
+ printf ("\n %-7s%-8s %-10s%-10s%-13s",
+ "STARTPC", fde_type_marker, "CFA", "FP", "RA");
for (j = 0; j < num_fres; j++)
{
sframe_decoder_get_fre (sfd_ctx, funcidx, j, &fre);
diff --git a/libsframe/sframe.c b/libsframe/sframe.c
index b05fed9..a761532 100644
--- a/libsframe/sframe.c
+++ b/libsframe/sframe.c
@@ -667,7 +667,8 @@ sframe_fre_get_ra_mangled_p (sframe_decoder_ctx *dctx ATTRIBUTE_UNUSED,
}
static int
-sframe_frame_row_entry_copy (sframe_frame_row_entry *dst, sframe_frame_row_entry *src)
+sframe_frame_row_entry_copy (sframe_frame_row_entry *dst,
+ sframe_frame_row_entry *src)
{
int err = 0;
@@ -711,7 +712,7 @@ sframe_decode_fre_start_address (const char *fre_buf,
else if (fre_type == SFRAME_FRE_TYPE_ADDR4)
{
uint32_t *uit = (uint32_t *)fre_buf;
- int32_t tmp = 0;
+ uint32_t tmp = 0;
memcpy (&tmp, uit, addr_size);
saddr = (uint32_t)tmp;
}