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
openmp: Fix signed/unsigned warning
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
bt386.c
blob
5ba2b794d0e00c25bdd30633f5260ec3ad97ff39
1
/* { dg-additional-options "-std=gnu89" } */
2
3
foo
(
a
,
b
)
4
{
5
return
(
a
& (
1
<<
b
)) !=
0
;
6
}
7
8
bar
(
a
,
b
)
9
{
10
a
^= (
1
<<
b
);
11
return
a
!=
0
;
12
}
13
14
main
()
15
{
16
int
i
;
17
for
(
i
=
0
;
i
<
32
;
i
++)
18
printf
(
"%d "
,
foo
(
0x8000000f
,
i
));
19
puts
(
""
);
20
}