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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000722-1.c
blob
0ce31917957ca2a072f1e1344476bda80c990a10
1
struct
s
{
char
*
p
;
int
t
; };
2
3
extern
void
bar
(
void
);
4
extern
void
foo
(
struct
s
*);
5
6
int
main
(
void
)
7
{
8
bar
();
9
bar
();
10
exit
(
0
);
11
}
12
13
void
14
bar
(
void
)
15
{
16
foo
(& (
struct
s
) {
"hi"
,
1
});
17
}
18
19
void
foo
(
struct
s
*
p
)
20
{
21
if
(
p
->
t
!=
1
)
22
abort
();
23
p
->
t
=
2
;
24
}