Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Oct 29, 2024
1 parent e661412 commit 28075e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/layout/hibf_statistics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,15 +393,15 @@ void hibf_statistics::collect_bins()

if (!found_merged_bin)
{
#if CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV
#if CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV || CHOPPER_WORKAROUND_GCC_BOGUS_MEMCPY
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Warray-bounds"
# pragma GCC diagnostic ignored "-Wstringop-overflow"
#endif // CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV
#endif // CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV || CHOPPER_WORKAROUND_GCC_BOGUS_MEMCPY
ibf.bins.emplace_back(hibf_statistics::bin_kind::merged, 1, std::vector<size_t>{user_bin_info.idx});
#if CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV
#if CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV || CHOPPER_WORKAROUND_GCC_BOGUS_MEMCPY
# pragma GCC diagnostic pop
#endif // CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV
#endif // CHOPPER_WORKAROUND_GCC_BOGUS_MEMMOV || CHOPPER_WORKAROUND_GCC_BOGUS_MEMCPY
ibf.bins.back().tb_index = target_tb_index;
auto next = prev;
next.push_back(target_tb_index);
Expand Down

0 comments on commit 28075e0

Please sign in to comment.