summaryrefslogtreecommitdiff
path: root/ext/-test-/bug-14834/bug-14384.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/-test-/bug-14834/bug-14384.c')
-rw-r--r--ext/-test-/bug-14834/bug-14384.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/-test-/bug-14834/bug-14384.c b/ext/-test-/bug-14834/bug-14384.c
index 58abd6d435..0d4103b5d4 100644
--- a/ext/-test-/bug-14834/bug-14384.c
+++ b/ext/-test-/bug-14834/bug-14384.c
@@ -28,8 +28,8 @@ g(MAYBE_UNUSED(VALUE q), void* w)
const int *e = (const int *)w;
const int r = *e++;
const int t = *e++;
- VALUE y[t];
- int u[t];
+ VALUE *y = ALLOCA_N(VALUE, t);
+ int *u = ALLOCA_N(int, t);
rb_profile_frames(r, t, y, u);
}