aboutsummaryrefslogtreecommitdiffstats
path: root/template/vm.inc.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/vm.inc.tmpl')
-rw-r--r--template/vm.inc.tmpl33
1 files changed, 0 insertions, 33 deletions
diff --git a/template/vm.inc.tmpl b/template/vm.inc.tmpl
deleted file mode 100644
index 14b6ba3f10..0000000000
--- a/template/vm.inc.tmpl
+++ /dev/null
@@ -1,33 +0,0 @@
-/* -*-c-*- *********************************************************/
-/*******************************************************************/
-/*******************************************************************/
-/**
- This file is VM main loop.
-
- ----
- This file is auto generated by insns2vm.rb
- DO NOT TOUCH!
-
- If you want to fix something, you must edit 'insns.def'
- */
-
-
-% line = _erbout.count("\n") + 1
-% @insns.each do |insn|
-<%
-line += 1
-make_insn_def(insn).split(/(__CURRENT_LINE__|__CURRENT_FILE__)/).each {|e|
- %><%=
- case e
- when '__CURRENT_LINE__'
- line.to_s
- when '__CURRENT_FILE__'
- "vm.inc"
- else
- line += e.count("\n")
- e
- end
- %><%
-}
-%>
-% end