expand ruby_sourcefile
* compile.c: expand ruby_sourcefile not to evaluate twice in RSTRING_PTR. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1ea17be152
commit
5aff6f2948
@ -529,8 +529,6 @@ iseq_add_mark_object(const rb_iseq_t *iseq, VALUE v)
|
|||||||
return COMPILE_OK;
|
return COMPILE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define ruby_sourcefile RSTRING_PTR(rb_iseq_path(iseq))
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
iseq_add_mark_object_compile_time(const rb_iseq_t *iseq, VALUE v)
|
iseq_add_mark_object_compile_time(const rb_iseq_t *iseq, VALUE v)
|
||||||
{
|
{
|
||||||
@ -3250,7 +3248,8 @@ when_vals(rb_iseq_t *iseq, LINK_ANCHOR *const cond_seq, NODE *vals,
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (rb_hash_lookup(literals, lit) != Qnil) {
|
if (rb_hash_lookup(literals, lit) != Qnil) {
|
||||||
rb_compile_warning(ruby_sourcefile, nd_line(val),
|
VALUE file = rb_iseq_path(iseq);
|
||||||
|
rb_compile_warning(RSTRING_PTR(file), nd_line(val),
|
||||||
"duplicated when clause is ignored");
|
"duplicated when clause is ignored");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user