make_signed_hex_str_32() allocates 20 bytes for its return string. It will never use as much, but get_imm_str_s() merges it into a string of only 15 bytes, making gcc 10.2 throw an error.
Changed the string size in make_signed_hex_str_32() to the maximum possible value to avoid this error.
make_signed_hex_str_32() allocates 20 bytes for its return string. It will never use as much, but get_imm_str_s() merges it into a string of only 15 bytes, making gcc 10.2 throw an error.
Changed the string size in make_signed_hex_str_32() to the maximum possible value to avoid this error.