fdvm updated
This commit is contained in:
@@ -354,6 +354,7 @@
|
||||
%token SPF_MERGE 354
|
||||
%token SPF_COVER 355
|
||||
%token SPF_PROCESS_PRIVATE 356
|
||||
%token SPF_WEIGHT 357
|
||||
|
||||
%{
|
||||
#include <string.h>
|
||||
@@ -8029,7 +8030,15 @@ characteristic_list: characteristic
|
||||
;
|
||||
|
||||
characteristic: needkeyword SPF_CODE_COVERAGE
|
||||
{ $$ = make_llnd(fi,SPF_CODE_COVERAGE_OP,LLNULL,LLNULL,SMNULL);}
|
||||
{ $$ = make_llnd(fi,SPF_CODE_COVERAGE_OP,LLNULL,LLNULL,SMNULL);}
|
||||
| needkeyword SPF_WEIGHT LEFTPAR DP_CONSTANT RIGHTPAR
|
||||
{
|
||||
PTR_LLND w;
|
||||
w = make_llnd(fi,DOUBLE_VAL, LLNULL, LLNULL, SMNULL);
|
||||
w->entry.string_val = copys(yytext);
|
||||
w->type = global_double;
|
||||
$$ = make_llnd(fi,SPF_WEIGHT_OP,w,LLNULL,SMNULL);
|
||||
}
|
||||
;
|
||||
|
||||
opt_clause_apply_fragment:
|
||||
|
||||
Reference in New Issue
Block a user