Fix typo in parser around tLEQ

This commit is contained in:
Masaki Muranaka
2012-06-14 17:38:47 +09:00
parent 73d7000b8f
commit df55efd373
+1 -1
View File
@@ -1512,7 +1512,7 @@ op : '|' { $$ = intern("|"); }
| '>' { $$ = intern(">"); }
| tGEQ { $$ = intern(">="); }
| '<' { $$ = intern("<"); }
| tLEQ { $$ = intern(">="); }
| tLEQ { $$ = intern("<="); }
| tNEQ { $$ = intern("!="); }
| tLSHFT { $$ = intern("<<"); }
| tRSHFT { $$ = intern(">>"); }