diff --git a/ChangeLog b/ChangeLog index abb38e123c..62d6fc853e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Dec 24 15:55:50 2007 Koichi Sasada + + * tool/compile.rb, getrev.rb, runruby.rb: remove unused tools. + Mon Dec 24 15:42:04 2007 Nobuyoshi Nakada * configure.in, cygwin/GNUmakefile.in, */Makefile.sub, diff --git a/tool/compile.rb b/tool/compile.rb deleted file mode 100644 index 66960f9851..0000000000 --- a/tool/compile.rb +++ /dev/null @@ -1,67 +0,0 @@ -require 'optparse' -require 'pp' - -OutputCompileOption = { - # enable - :peephole_optimization =>true, - :inline_const_cache =>true, - - # disable - :specialized_instruction =>false, - :operands_unification =>false, - :instructions_unification =>false, - :stack_caching =>false, -} - -def compile_to_rb infile, outfile - iseq = VM::InstructionSequence.compile_file(infile, OutputCompileOption) - - open(outfile, 'w'){|f| - f.puts "VM::InstructionSequence.load(" + - "Marshal.load(<