stage1_2/iec.y
changeset 52 f44458d1fa29
parent 51 d44158420983
child 68 b0a43002dcac
--- a/stage1_2/iec.y	Mon Aug 13 18:03:06 2007 +0200
+++ b/stage1_2/iec.y	Mon Aug 27 14:52:15 2007 +0200
@@ -3716,8 +3716,8 @@
 /* NOTE: the following two clash with the R and S IL operators.
  * It will have to be handled when we include parsing of SFC...
  */
-| R_operator		{$$ = new qualifier_c(strdup("R"));}
-| S_operator		{$$ = new qualifier_c(strdup("S"));}
+| R		{$$ = new qualifier_c(strdup("R"));}
+| S		{$$ = new qualifier_c(strdup("S"));}
 | P		{$$ = new qualifier_c(strdup("P"));}
 ;