gref/cref/lref are not used by analyzer

This commit is contained in:
Yuichi Nishiwaki 2014-01-24 17:09:06 +09:00
parent cfdf1ceaf8
commit a35606dc16
1 changed files with 0 additions and 4 deletions

View File

@ -112,7 +112,6 @@ typedef struct analyze_state {
pic_sym rEQ, rLT, rLE, rGT, rGE;
pic_sym sCALL, sTAILCALL;
pic_sym sDECLARE, sCLOSE, sREF;
pic_sym sGREF, sLREF, sCREF;
} analyze_state;
static void push_scope(analyze_state *, pic_value);
@ -163,9 +162,6 @@ new_analyze_state(pic_state *pic)
register_symbol(pic, state, sDECLARE, "declare");
register_symbol(pic, state, sCLOSE, "close");
register_symbol(pic, state, sREF, "ref");
register_symbol(pic, state, sGREF, "gref");
register_symbol(pic, state, sLREF, "lref");
register_symbol(pic, state, sCREF, "cref");
/* push initial scope */
push_scope(state, pic_nil_value());