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
/
961223-1.c
blob
9bc6cfa354da3c30e0dc002f71227c80c7e53675
1
struct
s
{
2
double
d
;
3
};
4
5
inline
struct
s
6
sub
(
struct
s s
)
7
{
8
s
.
d
+=
1.0
;
9
return
s
;
10
}
11
12
main
()
13
{
14
struct
s t
= {
2.0
};
15
t
=
sub
(
t
);
16
if
(
t
.
d
!=
3.0
)
17
abort
();
18
exit
(
0
);
19
}