Skip to content

Commit 0d0c5f7

Browse files
committed
Regenerate documentation
1 parent 1dbb3cd commit 0d0c5f7

File tree

386 files changed

+25915
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

386 files changed

+25915
-0
lines changed

doc/cil.version.aux

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
\relax
2+
\@setckpt{cil.version}{
3+
\setcounter{page}{1}
4+
\setcounter{equation}{0}
5+
\setcounter{enumi}{0}
6+
\setcounter{enumii}{0}
7+
\setcounter{enumiii}{0}
8+
\setcounter{enumiv}{0}
9+
\setcounter{footnote}{0}
10+
\setcounter{mpfootnote}{0}
11+
\setcounter{part}{0}
12+
\setcounter{section}{0}
13+
\setcounter{subsection}{0}
14+
\setcounter{subsubsection}{0}
15+
\setcounter{paragraph}{0}
16+
\setcounter{subparagraph}{0}
17+
\setcounter{figure}{0}
18+
\setcounter{table}{0}
19+
\setcounter{cuttingdepth}{0}
20+
\setcounter{LT@tables}{0}
21+
\setcounter{LT@chunks}{0}
22+
}

doc/cil.version.tex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
\def\cilversion{1.7.3}

doc/cilcode.tmp/ex1.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
int long signed x;
2+
signed long extern x;
3+
long static int long y;
4+
5+
// Some code that uses these declaration, so that CIL does not remove them
6+
int main() { return x + y; }

doc/cilcode.tmp/ex1.cil.c

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* Generated by CIL v. 1.7.3 */
2+
/* print_CIL_Input is true */
3+
4+
#line 1 "cilcode.tmp/ex1.c"
5+
long x ;
6+
#line 3 "cilcode.tmp/ex1.c"
7+
static long long y ;
8+
#line 6 "cilcode.tmp/ex1.c"
9+
int main(void)
10+
{
11+
12+
13+
{
14+
#line 6
15+
return ((int )((long long )x + y));
16+
}
17+
}

doc/cilcode.tmp/ex1.cil.i

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# 1 "cilcode.tmp/ex1.cil.c"
2+
# 1 "<command-line>"
3+
# 1 "cilcode.tmp/ex1.cil.c"
4+
# 1 "cilcode.tmp/ex1.c"
5+
long x ;
6+
# 3 "cilcode.tmp/ex1.c"
7+
static long long y ;
8+
# 6 "cilcode.tmp/ex1.c"
9+
int main(void)
10+
{
11+
12+
13+
{
14+
# 6 "cilcode.tmp/ex1.c"
15+
return ((int )((long long )x + y));
16+
}
17+
}

doc/cilcode.tmp/ex1.i

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# 1 "cilcode.tmp/ex1.c"
2+
# 1 "<command-line>"
3+
# 1 "cilcode.tmp/ex1.c"
4+
int long signed x;
5+
signed long extern x;
6+
long static int long y;
7+
8+
9+
int main() { return x + y; }

doc/cilcode.tmp/ex1.o

1.37 KB
Binary file not shown.

doc/cilcode.tmp/ex10.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
char foo[] = "foo plus bar";

doc/cilcode.tmp/ex10.cil.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* Generated by CIL v. 1.7.3 */
2+
/* print_CIL_Input is true */
3+
4+
#line 1 "cilcode.tmp/ex10.c"
5+
char foo[13] =
6+
#line 1 "cilcode.tmp/ex10.c"
7+
{ (char )'f', (char )'o', (char )'o', (char )' ',
8+
(char )'p', (char )'l', (char )'u', (char )'s',
9+
(char )' ', (char )'b', (char )'a', (char )'r',
10+
(char )'\000'};

doc/cilcode.tmp/ex10.cil.i

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# 1 "cilcode.tmp/ex10.cil.c"
2+
# 1 "<command-line>"
3+
# 1 "cilcode.tmp/ex10.cil.c"
4+
# 1 "cilcode.tmp/ex10.c"
5+
char foo[13] =
6+
# 1 "cilcode.tmp/ex10.c"
7+
{ (char )'f', (char )'o', (char )'o', (char )' ',
8+
(char )'p', (char )'l', (char )'u', (char )'s',
9+
(char )' ', (char )'b', (char )'a', (char )'r',
10+
(char )'\000'};

0 commit comments

Comments
 (0)