Skip to content

Commit f5bbc20

Browse files
author
dtrg
committed
Removed unnecessary commas seperating yacc tokens, to prevent warnings.
1 parent 4c0a0e6 commit f5bbc20

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

util/ncgg/cgg.y

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ iocc_t iops[20];
111111
%left '|'
112112
%left '^'
113113
%left '&'
114-
%left CMPEQ,CMPNE
115-
%left CMPLT,CMPLE,CMPGT,CMPGE
116-
%left RSHIFT,LSHIFT
117-
%left '+','-'
118-
%left '*','/','%'
119-
%nonassoc NOT,COMP,UMINUS
114+
%left CMPEQ CMPNE
115+
%left CMPLT CMPLE CMPGT CMPGE
116+
%left RSHIFT LSHIFT
117+
%left '+' '-'
118+
%left '*' '/' '%'
119+
%nonassoc NOT COMP UMINUS
120120

121121
%start machtable
122122

0 commit comments

Comments
 (0)