repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ada: Move special case for null string literal from frontend to backend
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20001027-1.c
blob
c2df3f4547c109032f0adf7c83a257b9d56ee1bd
1
void
abort
(
void
);
2
void
exit
(
int
);
3
4
int
x
,*
p
=&
x
;
5
6
int
main
()
7
{
8
int
i
=
0
;
9
x
=
1
;
10
p
[
i
]=
2
;
11
if
(
x
!=
2
)
12
abort
();
13
exit
(
0
);
14
}