Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -4861,7 +4861,7 @@ thread_io_wait(rb_thread_t *th, struct rb_io *io, int fd, int events, struct tim
if (io) {
blocking_operation.ec = ec;
COMPILER_WARNING_PUSH
#if RBIMPL_COMPILER_IS(GCC)
#if RBIMPL_COMPILER_SINCE(GCC, 12, 0, 0)
COMPILER_WARNING_IGNORED(-Wdangling-pointer)
#endif
// rb_io_blocking_operation_exit() below unlinks it on every path.
Expand Down Expand Up @@ -5057,7 +5057,7 @@ rb_gc_set_stack_end(VALUE **stack_end_p)
{
VALUE stack_end;
COMPILER_WARNING_PUSH
#if RBIMPL_COMPILER_IS(GCC)
#if RBIMPL_COMPILER_SINCE(GCC, 12, 0, 0)
COMPILER_WARNING_IGNORED(-Wdangling-pointer);
#endif
*stack_end_p = &stack_end;
Expand Down