diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-29 14:57:18 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-29 14:57:18 +0000 |
commit | d4fe980df7527e8b3c07d885182f8693645d99f9 (patch) | |
tree | 13b062e687dbb486285ac3d8087b1f89c196329f /node.h | |
parent | 0a4430157c5defd0cf836b09f0a6bb868a3b5ac9 (diff) | |
download | ruby-d4fe980df7527e8b3c07d885182f8693645d99f9.tar.gz ruby-d4fe980df7527e8b3c07d885182f8693645d99f9.tar.xz ruby-d4fe980df7527e8b3c07d885182f8693645d99f9.zip |
* parse.y (struct parser_params): heap must be placed at same offset
also in ripper.y. fixed: [ruby-dev:27846]
* parse.y (yycompile): prevent vparser from tail call optimization.
fixed: [ruby-dev:27851]
* parse.y (parser_mark): value needs to be marked.
fixed: [ruby-dev:27845]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r-- | node.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -353,9 +353,9 @@ typedef struct RNode { VALUE rb_parser_new(void); VALUE rb_parser_end_seen_p(VALUE); -NODE *rb_parser_compile_cstr(volatile VALUE, const char*, const char*, int, int); -NODE *rb_parser_compile_string(volatile VALUE, const char*, VALUE, int); -NODE *rb_parser_compile_file(volatile VALUE, const char*, VALUE, int); +NODE *rb_parser_compile_cstr(VALUE, const char*, const char*, int, int); +NODE *rb_parser_compile_string(VALUE, const char*, VALUE, int); +NODE *rb_parser_compile_file(VALUE, const char*, VALUE, int); NODE *rb_compile_cstr(const char*, const char*, int, int); NODE *rb_compile_string(const char*, VALUE, int); |