aboutsummaryrefslogtreecommitdiff
path: root/src/tpc.y
diff options
context:
space:
mode:
Diffstat (limited to 'src/tpc.y')
-rw-r--r--src/tpc.y20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/tpc.y b/src/tpc.y
index 9878ce7..b5d0d35 100644
--- a/src/tpc.y
+++ b/src/tpc.y
@@ -54,32 +54,32 @@ static char fname[64];
54%precedence ELSE 54%precedence ELSE
55 55
56%% 56%%
57Prog: { gen_prologue(); } 57Prog: { gen_prologue(); }
58 DeclConsts DeclVars DeclFoncts { gen_const_declaration(); } 58 DeclConsts DeclVars DeclFoncts { gen_const_declaration(); }
59; 59;
60DeclConsts: 60DeclConsts:
61 DeclConsts CONST ListConst ';' 61 DeclConsts CONST ListConst ';'
62| 62|
63; 63;
64ListConst: 64ListConst:
65 ListConst ',' IDENT '=' Litteral 65 ListConst ',' IDENT '=' Litteral { gen_const($<ident>1, $<num>3, scope); }
66| IDENT '=' Litteral 66| IDENT '=' Litteral { gen_const($<ident>1, $<num>3, scope); }
67; 67;
68Litteral: 68Litteral:
69 NombreSigne 69 NombreSigne { $<num>$ = $<num>1; }
70| CARACTERE 70| CARACTERE { $<num>$ = $<num>1; }
71; 71;
72NombreSigne: 72NombreSigne:
73 NUM 73 NUM { $<num>$ = $<num>1; }
74| ADDSUB NUM 74| ADDSUB NUM { $<num>$ = $<addsub>1 == '-' ? - $<num>2 : $<num>2; }
75; 75;
76DeclVars: 76DeclVars:
77 DeclVars TYPE Declarateurs ';' 77 DeclVars TYPE Declarateurs ';'
78| 78|
79; 79;
80Declarateurs: 80Declarateurs:
81 Declarateurs ',' Declarateur { gen_declaration($<ident>3, $<type>0, scope); } 81 Declarateurs ',' Declarateur { gen_declaration($<ident>3, $<type>0, scope); }
82| Declarateur { gen_declaration($<ident>1, $<type>0, scope); } 82| Declarateur { gen_declaration($<ident>1, $<type>0, scope); }
83; 83;
84Declarateur: 84Declarateur:
85 IDENT 85 IDENT