pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
2008-01-05
2008-01-05 20:09:46 by Henrik Grubbström (Grubba) <grubba@grubba.org>
c4e78ffccbd8e4cfed6d1c196c6c69865caee91b (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed typo.
Rev: src/language.yacc:1.403
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: language.yacc,v 1.
402
2008/01/05
19
:
06
:
30
grubba Exp $
+
|| $Id: language.yacc,v 1.
403
2008/01/05
20
:
09
:
46
grubba Exp $
*/ %pure_parser
4373:
if (CAR(n)->token == F_ARRAY_LVALUE) { mark_lvalues_as_used(CAAR(n)); } else if ((CAR(n)->token == F_LOCAL) && !(CAR(n)->u.integer.b)) {
-
Pike_compiler->compiler_frame->variable[CAR(n)->u.integer.a] |=
+
Pike_compiler->compiler_frame->variable[CAR(n)->u.integer.a]
.flags
|=
LOCAL_VAR_IS_USED; } n = CDR(n);