diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2023-06-01 09:41:04 -0700 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2023-06-01 09:41:04 -0700 |
commit | d987df5c95340a8b41b23d68ad6a8f9f33485835 (patch) | |
tree | e09f74afc5d4154c659cb269715f0e1366e5d801 /libsframe | |
parent | a5ffdcafc76c3f77c1c05fabe1544e004e9ef358 (diff) | |
download | fsf-binutils-gdb-d987df5c95340a8b41b23d68ad6a8f9f33485835.zip fsf-binutils-gdb-d987df5c95340a8b41b23d68ad6a8f9f33485835.tar.gz fsf-binutils-gdb-d987df5c95340a8b41b23d68ad6a8f9f33485835.tar.bz2 |
libsframe: avoid using magic number
Define a new constant for the maximum number of stack offsets handled in
libsframe, and use it. Note that the SFrame format does not define such
a constant (limit). This is an implmentation-defined constant in
libsframe.
include/
* sframe-api.h (MAX_NUM_STACK_OFFSETS): New definition.
libsframe/
* sframe.c (sframe_fre_sanity_check_p): Use it.
Diffstat (limited to 'libsframe')
-rw-r--r-- | libsframe/sframe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsframe/sframe.c b/libsframe/sframe.c index 97b4910..a97c64f 100644 --- a/libsframe/sframe.c +++ b/libsframe/sframe.c @@ -299,7 +299,7 @@ sframe_fre_sanity_check_p (sframe_frame_row_entry *frep) return false; offset_cnt = sframe_fre_get_offset_count (fre_info); - if (offset_cnt > 3) + if (offset_cnt > MAX_NUM_STACK_OFFSETS) return false; return true; |