diff -r 8ba9ec4bae50 -r bd1360f29f15 stage1_2/iec_bison.yy --- a/stage1_2/iec_bison.yy Thu Oct 04 14:30:51 2012 +0100 +++ b/stage1_2/iec_bison.yy Thu Oct 04 15:10:45 2012 +0100 @@ -1020,6 +1020,8 @@ %token N %token P +%token P0 +%token P1 /* NOTE: the following two clash with the R and S IL operators. * It will have to be handled when we include parsing of SFC... */ @@ -5243,6 +5245,8 @@ | R {$$ = new qualifier_c(strdup("R"), locloc(@$));} | S {$$ = new qualifier_c(strdup("S"), locloc(@$));} | P {$$ = new qualifier_c(strdup("P"), locloc(@$));} +| P0 {$$ = new qualifier_c(strdup("P0"), locloc(@$));} +| P1 {$$ = new qualifier_c(strdup("P1"), locloc(@$));} ; timed_qualifier: