From: dtrg Date: Tue, 18 Jul 2006 16:59:11 +0000 (+0000) Subject: Removed unnecessary commas seperating yacc tokens, to prevent warnings. X-Git-Tag: release-6-0-pre-1~140 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=4f6fff6b1f7672c4392301c0320246282046ff86;p=ack.git Removed unnecessary commas seperating yacc tokens, to prevent warnings. --- diff --git a/mach/vax4/as/mach2.c b/mach/vax4/as/mach2.c index 4eb74133b..5e977876f 100644 --- a/mach/vax4/as/mach2.c +++ b/mach/vax4/as/mach2.c @@ -34,19 +34,19 @@ %token REG %token CASE_X_X_X %token OP0 -%token OP1_A, OP1_Bx, OP1_u, OP1_Be -%token OP1_BX, OP1_X -%token OP2_A_A, OP2_A_l, OP2_b_b, OP2_b_l, OP2_b_u, OP2_b_w, OP2_l_A, - OP2_l_Bb, OP2_l_b, OP2_l_l, OP2_l_u, OP2_l_w, OP2_u_b, OP2_u_l, - OP2_u_u, OP2_u_w, OP2_w_b, OP2_w_l, OP2_w_u, OP2_w_w, OP2_l_Be -%token OP3_b_b_b, OP3_b_l_l, OP3_b_u_u, OP3_b_w_A, OP3_l_V_Bb, - OP3_l_l_Bb, OP3_l_l_l, OP3_l_w_A, OP3_u_u_u, OP3_u_w_A, - OP3_w_A_A, OP3_w_A_l, OP3_w_w_w, OP3_l_V_Be -%token OP4_A_l_w_A, OP4_b_b_b_Bw, OP4_l_b_V_l, OP4_l_l_b_V, - OP4_l_l_l_Bw, OP4_l_l_l_u, OP4_l_u_l_l, OP4_u_u_u_Bw, - OP4_w_A_A_A, OP4_w_A_A_b, OP4_w_A_w_A, OP4_w_w_w_Bw -%token OP5_u_b_u_l_u, OP5_u_w_u_l_u, OP5_w_A_A_w_A, OP5_w_A_b_w_A -%token OP6_b_w_A_b_w_A, OP6_l_l_l_l_l_l, OP6_w_A_b_A_w_A, +%token OP1_A OP1_Bx OP1_u OP1_Be +%token OP1_BX OP1_X +%token OP2_A_A OP2_A_l OP2_b_b OP2_b_l OP2_b_u OP2_b_w OP2_l_A + OP2_l_Bb OP2_l_b OP2_l_l OP2_l_u OP2_l_w OP2_u_b OP2_u_l + OP2_u_u OP2_u_w OP2_w_b OP2_w_l OP2_w_u OP2_w_w OP2_l_Be +%token OP3_b_b_b OP3_b_l_l OP3_b_u_u OP3_b_w_A OP3_l_V_Bb + OP3_l_l_Bb OP3_l_l_l OP3_l_w_A OP3_u_u_u OP3_u_w_A + OP3_w_A_A OP3_w_A_l OP3_w_w_w OP3_l_V_Be +%token OP4_A_l_w_A OP4_b_b_b_Bw OP4_l_b_V_l OP4_l_l_b_V + OP4_l_l_l_Bw OP4_l_l_l_u OP4_l_u_l_l OP4_u_u_u_Bw + OP4_w_A_A_A OP4_w_A_A_b OP4_w_A_w_A OP4_w_w_w_Bw +%token OP5_u_b_u_l_u OP5_u_w_u_l_u OP5_w_A_A_w_A OP5_w_A_b_w_A +%token OP6_b_w_A_b_w_A OP6_l_l_l_l_l_l OP6_w_A_b_A_w_A OP6_w_A_w_A_w_A /* operand types: @@ -55,10 +55,10 @@ B - branch offsets (these do not result in an addressing mode byte) */ -%type OP1_O, OP1_B -%type OP2_O_O, OP2_O_B -%type OP3_O_O_O, OP3_O_O_B -%type OP4_O_O_O_O, OP4_O_O_O_B +%type OP1_O OP1_B +%type OP2_O_O OP2_O_B +%type OP3_O_O_O OP3_O_O_B +%type OP4_O_O_O_O OP4_O_O_O_B %type OP5_O_O_O_O_O %type OP6_O_O_O_O_O_O %type CASE_O_O_O