remove unused properties

This commit is contained in:
Yuichi Nishiwaki 2014-01-20 13:22:45 +09:00
parent 35cf4e1fcd
commit 78420ef042
1 changed files with 0 additions and 4 deletions

View File

@ -93,7 +93,6 @@ typedef struct analyze_state {
pic_sym rEQ, rLT, rLE, rGT, rGE; pic_sym rEQ, rLT, rLE, rGT, rGE;
pic_sym sCALL, sTAILCALL; pic_sym sCALL, sTAILCALL;
pic_sym sGREF, sLREF, sCREF; pic_sym sGREF, sLREF, sCREF;
pic_sym sGSET, sLSET, sCSET;
} analyze_state; } analyze_state;
static void push_scope(analyze_state *, pic_value); static void push_scope(analyze_state *, pic_value);
@ -142,9 +141,6 @@ new_analyze_state(pic_state *pic)
register_symbol(pic, state, sGREF, "gref"); register_symbol(pic, state, sGREF, "gref");
register_symbol(pic, state, sLREF, "lref"); register_symbol(pic, state, sLREF, "lref");
register_symbol(pic, state, sCREF, "cref"); register_symbol(pic, state, sCREF, "cref");
register_symbol(pic, state, sGREF, "gref");
register_symbol(pic, state, sLREF, "lref");
register_symbol(pic, state, sCREF, "cref");
/* push initial scope */ /* push initial scope */
push_scope(state, pic_nil_value()); push_scope(state, pic_nil_value());