summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-05 05:59:23 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-01-05 05:59:23 +0000
commit295bc2fe2577336807db6e2c30bd642bdb6482bc (patch)
treee8af2c0334772bc31cc943c68fd2a884605830cc /iseq.c
parent623a79c376fec2f76cc33819807f1903b40c3dea (diff)
removes the dtrace support. reverts r26239, r26238 and r26235.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/iseq.c b/iseq.c
index c247b8c90d..7a59fce049 100644
--- a/iseq.c
+++ b/iseq.c
@@ -1473,27 +1473,6 @@ rb_iseq_build_for_ruby2cext(
return iseqval;
}
-const char *
-rb_vm_insn_name(int insn)
-{
- if (insn < VM_INSTRUCTION_SIZE) {
- return insn_name(insn);
- } else {
- return 0;
- }
-}
-
-int
-rb_vm_insn_len(int insn)
-{
- if (insn < VM_INSTRUCTION_SIZE) {
- return insn_len(insn);
- } else {
- return 0;
- }
-}
-
-
void
Init_ISeq(void)
{