Skip to content
Snippets Groups Projects
Commit c49aaf7d authored by Jayke Meijer's avatar Jayke Meijer
Browse files

Removed useless yyvals.

parent bd11337f
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,8 @@
\$[a-z0-9._] { yylval = yytext; return ARG; } /* Arg of instr */
^[a-z.]+ { yylval = yytext; return INSTR; } /* Instruction */
\.[^\n]* { yylval = yytext; return DIRECTIVE; } /* Assembly */
\, { yylval = yytext; return COMMA; } /* Comma */
\, { return COMMA; } /* Comma */
#[^\n]* { yylval = yytext; return COMMENT; } /* Comment */
\n { yylval = yytext; return NL; } /* New line */
\n { return NL; } /* New line */
[\s\t]+ { ; } /* Ignore whitespace */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment