diff options
-rw-r--r-- | internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal.h b/internal.h index 53091e25f8..c296a99b6e 100644 --- a/internal.h +++ b/internal.h @@ -2388,7 +2388,7 @@ struct rb_call_data { struct rb_call_info ci; }; VALUE rb_funcallv_with_cc(struct rb_call_data*, VALUE, ID, int, const VALUE*) -#if GCC_VERSION_SINCE(3, 3, 0) && defined(__OPTIMIZE__) +#if (defined(__clang__) || GCC_VERSION_SINCE(3, 3, 0)) && defined(__OPTIMIZE__) __attribute__((__visibility__("default"), __nonnull__(1))) # define rb_funcallv(recv, mid, argc, argv) \ __extension__({ \ |