summaryrefslogtreecommitdiff
path: root/inits.c
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2019-11-07 18:22:08 +0900
committerKoichi Sasada <ko1@atdot.net>2019-11-08 09:09:29 +0900
commite2a45cb984ba75083a577b38ee9643800579a280 (patch)
tree9e8c56b3c7081b3ffdd8b65ca16c166ba186725e /inits.c
parent46acd0075d80c2f886498f089fde1e9d795d50c4 (diff)
use builtin for TracePoint.
Define TracePoint in trace_point.rb and use __builtin_ syntax.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2655
Diffstat (limited to 'inits.c')
-rw-r--r--inits.c3
1 files changed, 2 insertions, 1 deletions
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