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
/
unsorted
/
bt386.c
blob
283ab5fa64aeac5dbdee05784828b2af8b27ad1f
1
foo
(
a
,
b
)
2
{
3
return
(
a
& (
1
<<
b
)) !=
0
;
4
}
5
6
bar
(
a
,
b
)
7
{
8
a
^= (
1
<<
b
);
9
return
a
!=
0
;
10
}
11
12
main
()
13
{
14
int
i
;
15
for
(
i
=
0
;
i
<
32
;
i
++)
16
printf
(
"%d "
,
foo
(
0x8000000f
,
i
));
17
puts
(
""
);
18
}