From e2a45cb984ba75083a577b38ee9643800579a280 Mon Sep 17 00:00:00 2001 From: Koichi Sasada Date: Thu, 7 Nov 2019 18:22:08 +0900 Subject: use builtin for TracePoint. Define TracePoint in trace_point.rb and use __builtin_ syntax. --- inits.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'inits.c') diff --git a/inits.c b/inits.c index 11b5fa5a7e..8a9789d050 100644 --- a/inits.c +++ b/inits.c @@ -65,11 +65,12 @@ rb_call_inits(void) CALL(Rational); CALL(Complex); CALL(version); - CALL(vm_trace); CALL(vm_stack_canary); CALL(ast); CALL(gc_stress); CALL(builtin); + + CALL(vm_trace); } #undef CALL -- cgit v1.2.1