Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fixed some bison warnings. | aca6b13e73d95c41787a7a0fdcc33407247be3a8 | lep | 2015-02-01 14:49:55 |
Removed multiline comments. | e6d3a1bb5099bbf6e3a4ef2501645b15908a1ce8 | lep | 2015-02-01 14:49:16 |
Removed unnecessary tokens. | 4f37057dfd472c2a400d667a6f7a3762cac01dcd | lep | 2015-02-01 14:48:14 |
Comments now work with EOF in addition to newlines at the end. | 5363d3ca429da30594f7afb9d351335912b03fbd | lep | 2015-02-01 14:46:09 |
pjass 10n | 2b2d35bc58dc93bc68014711cda919cecff13b4a | lep | 2014-10-25 20:38:00 |
pjass 10m | 265bac6343dfeb09e1fc0af5c06571c7dc172455 | Deaod | 2010-02-15 12:15:00 |
pjass 10l | 0c9161120896904b55b3cdd7b2f7430dd97f82e9 | PitzerMike | 2009-06-15 21:30:00 |
pjass 10k | 43c1a8a167cdf2982af2c47056beeafcd1840537 | Zoxc | 2009-04-03 21:23:00 |
pjass 10j | 16bbe625b7670a7affcf495e3370224c30582bca | PitzerMike | 2007-10-09 09:22:00 |
pjass 10i | 1ecf3d1238619358a0aa9b1b919ed9ba97d36f84 | PitzerMike | 2007-09-29 11:57:00 |
pjass 10h | dcb319607e8bb35637f86918962610683ada2b08 | PitzerMike | 2007-09-13 23:49:00 |
pjass 10g | a5070a4d74abc627160481e592233fa26870d57a | PitzerMike | 2007-08-24 10:43:00 |
pjass 10f | e6893a0480e2b1c9bb22f39a897a86e8d05123a6 | PitzerMike | 2007-04-28 08:26:00 |
Fake commit to cleanup the cvs-import of the pjass sourceforge repo. | 7f2ea341ebf2ed939f99ec3b14403025446e25f5 | lep | 2017-01-11 14:07:30 |
Fixed some errors on Debian and removed some warnings. | 28b8a48ff580cb1c06343b4f51194b9a18f0901c | cilibrar | 2004-08-15 07:15:22 |
Works under Linux, removed debug messages. | 60be798cd6b6e8ad3432feecf3418c7d2662807f | cilibrar | 2004-08-15 07:10:44 |
*** empty log message *** | e8d4118415a91b81e924c78fc26c9c48eddefd5f | cilibrar | 2004-08-15 07:07:53 |
Fixed -mno-cygwin option to work under just cygwin host_os | 1190fdc75012f9b55c597cc46f9b1c814ca5b8c7 | cilibrar | 2004-08-15 07:06:56 |
More configuration guessing scripts. | d738f380f0324e5ca4ecdde5b79af99e1a783f24 | cilibrar | 2004-08-15 07:03:34 |
More adjustments. | 0e72fd7fb1af1faaea69beb731b3d675583c2d2f | cilibrar | 2004-08-15 07:02:02 |
File | Lines added | Lines deleted |
---|---|---|
grammar.y | 2 | 2 |
File grammar.y changed (mode: 100644) (index 662add4..7bae07f) | |||
... | ... | globdefs: /* empty */ | |
163 | 163 | | GLOBALS vardecls ENDGLOBALS endglobalsmarker {yyerrorline(0, lineno - 1, "Missing linebreak before global declaration");} | | GLOBALS vardecls ENDGLOBALS endglobalsmarker {yyerrorline(0, lineno - 1, "Missing linebreak before global declaration");} |
164 | 164 | ; | ; |
165 | 165 | ||
166 | endglobalsmarker: /* empty */ {afterendglobals = 1} | ||
166 | endglobalsmarker: /* empty */ {afterendglobals = 1;} | ||
167 | 167 | ; | ; |
168 | 168 | ||
169 | 169 | vardecls: /* empty */ | vardecls: /* empty */ |
... | ... | expr: intexpr { $$.ty = gInteger; } | |
234 | 234 | $$.ty = binop($1.ty, $3.ty); } | $$.ty = binop($1.ty, $3.ty); } |
235 | 235 | | MINUS expr { isnumeric($2.ty); $$.ty = $2.ty; } | | MINUS expr { isnumeric($2.ty); $$.ty = $2.ty; } |
236 | 236 | | LPAREN expr RPAREN { $$.ty = $2.ty; } | | LPAREN expr RPAREN { $$.ty = $2.ty; } |
237 | | funccall { $$.ty = $1.ty } | ||
237 | | funccall { $$.ty = $1.ty; } | ||
238 | 238 | | rid LBRACKET expr RBRACKET { | | rid LBRACKET expr RBRACKET { |
239 | 239 | const struct typeandname *tan = getVariable($1.str); | const struct typeandname *tan = getVariable($1.str); |
240 | 240 | if (tan->ty != gAny) { | if (tan->ty != gAny) { |