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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
990106-1.c
blob
2f75d72a8c52f328c32c9c4a97befa2460223a0c
1
/* { dg-additional-options "-std=gnu89" } */
2
3
foo
(
bufp
)
4
char
*
bufp
;
5
{
6
int
x
=
80
;
7
return
(*
bufp
++ =
x
?
'a'
:
'b'
);
8
}
9
10
main
()
11
{
12
char
x
;
13
14
if
(
foo
(&
x
) !=
'a'
)
15
abort
();
16
17
exit
(
0
);
18
}