Skip to content

Commit

Permalink
TOOLS/INFO: ignore large stack allocation
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-shalev committed Jul 2, 2024
1 parent 3fb6705 commit ec83329
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tools/info/type_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ static void print_size(const char *name, size_t size)
print_size(UCS_PP_QUOTE(_type) "." UCS_PP_QUOTE(_field), \
ucs_field_sizeof(_type, _field))

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wframe-larger-than="
void print_type_info(const char * tl_name)
{
if (tl_name == NULL) {
Expand Down Expand Up @@ -292,3 +294,4 @@ void print_type_info(const char * tl_name)
PRINT_SIZE(ucp_wireup_msg_t);

}
#pragma GCC diagnostic pop

0 comments on commit ec83329

Please sign in to comment.