diff options
author | Adam NAILI | 2018-06-06 03:06:34 +0200 |
---|---|---|
committer | Adam NAILI | 2018-06-06 03:06:34 +0200 |
commit | 38771494bada2b71a5e3a320938e6a259c1e208c (patch) | |
tree | c8c14d57d981a67802d75f966267e0fd64563605 /res/test_global.tpc | |
parent | 7ab0b07d8224280330320238c45889c460cd0bda (diff) | |
download | tpc-compiler-38771494bada2b71a5e3a320938e6a259c1e208c.tar.gz |
Fixing chain declarator and array conflict
Diffstat (limited to 'res/test_global.tpc')
-rw-r--r-- | res/test_global.tpc | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/res/test_global.tpc b/res/test_global.tpc index 731fffb..8fda248 100644 --- a/res/test_global.tpc +++ b/res/test_global.tpc | |||
@@ -1,15 +1,14 @@ | |||
1 | /* test-table-symboles.tpc */ | ||
2 | |||
3 | /* Test file for simplified translator of a declaration of variables in C */ | ||
4 | entier r1,b,s,c,r2 ; | 1 | entier r1,b,s,c,r2 ; |
5 | caractere letter, digit, punct; | 2 | caractere letter, digit, punct; |
3 | entier i; | ||
4 | |||
6 | 5 | ||
7 | void calcul(void) { | 6 | void calcul(void) { |
8 | entier i; | ||
9 | i = 3; | ||
10 | r1=12; | 7 | r1=12; |
11 | r2=13; | 8 | r2=13; |
12 | b = r1 + r2 + i; | 9 | s = 3; |
10 | |||
11 | b = r1 + r2 + s; | ||
13 | print(b); | 12 | print(b); |
14 | } | 13 | } |
15 | 14 | ||