# HG changeset patch # User lbessard # Date 1187020986 -7200 # Node ID d441584209834b2910ab984fcafb60c61dd08b04 # Parent 7cf30e1af797add23946a6041e5759176ddf66d7 Adding R and S qualifier to SFC diff -r 7cf30e1af797 -r d44158420983 stage1_2/iec.y --- a/stage1_2/iec.y Thu Aug 02 17:53:55 2007 +0200 +++ b/stage1_2/iec.y Mon Aug 13 18:03:06 2007 +0200 @@ -3716,10 +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 {$$ = new identifier_c(strdup("R"));} -| S {$$ = new identifier_c(strdup("S"));} -*/ +| R_operator {$$ = new qualifier_c(strdup("R"));} +| S_operator {$$ = new qualifier_c(strdup("S"));} | P {$$ = new qualifier_c(strdup("P"));} ;