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
/
compile
/
20011114-2.c
blob
46f0aedeb3ab46dd4c87f859b8b882bcc22c009e
1
typedef
struct
{
int
c
,
d
,
e
,
f
,
g
; }
D
;
2
3
void
bar
(
unsigned long
,
unsigned long
);
4
void
foo
(
D
*
y
)
5
{
6
int
x
=
0
;
7
8
if
(
y
->
f
==
0
)
9
x
|=
0x1
;
10
if
(
y
->
g
==
0
)
11
x
|=
0x2
;
12
bar
((
x
<<
16
) | (
y
->
c
&
0xffff
), (
y
->
d
<<
16
) | (
y
->
e
&
0xffff
));
13
}