aboutsummaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAdam NAILI2018-06-03 13:37:00 +0200
committerAdam NAILI2018-06-03 13:37:00 +0200
commit628b18fb15ee3d6633c73d404f109d01f0a7ece2 (patch)
treeeff988eb57bfaa626eceee068461f3075b2b0cd7 /res
parent5ad57d142bcf05886c750018b067865fc97e13fe (diff)
downloadtpc-compiler-628b18fb15ee3d6633c73d404f109d01f0a7ece2.tar.gz
.bss section management (globals)
Diffstat (limited to 'res')
-rw-r--r--res/test_global.tpc12
1 files changed, 12 insertions, 0 deletions
diff --git a/res/test_global.tpc b/res/test_global.tpc
new file mode 100644
index 0000000..789f290
--- /dev/null
+++ b/res/test_global.tpc
@@ -0,0 +1,12 @@
1/* test-table-symboles.tpc */
2
3/* Test file for simplified translator of a declaration of variables in C */
4entier r1,b,s,c,r2 ;
5caractere letter, digit, punct;
6
7entier main(void) {
8 r1=12;
9 r2=13;
10 b = r1 + r2;
11 print(b);
12}