Skip to content

Commit 8b06340

Browse files
authored
Fixed compile error (#225)
1 parent 8d90965 commit 8b06340

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cobj/codegen.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,6 +1408,7 @@ static void joutput_param(cb_tree x, int id) {
14081408
struct cb_alphabet_name *abp;
14091409
struct cb_alphabet_name *rbp;
14101410
cb_tree l;
1411+
struct literal_list *ll;
14111412
int n;
14121413
int extrefs;
14131414
int sav_stack_id;
@@ -1490,8 +1491,8 @@ static void joutput_param(cb_tree x, int id) {
14901491
joutput("%s%s", CB_PREFIX_FILE, CB_FILE(x)->cname);
14911492
break;
14921493
case CB_TAG_LITERAL:
1493-
struct literal_list *l = lookup_literal(x);
1494-
joutput_const_identifier(l);
1494+
ll = lookup_literal(x);
1495+
joutput_const_identifier(ll);
14951496
break;
14961497
case CB_TAG_FIELD:
14971498
/* TODO: remove me */

0 commit comments

Comments
 (0)