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
Fix warnings occured during profiledboostrap on
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
ac.c
blob
1d3c085eec1cd3e7195e29c32a31b747dc5793c2
1
barfoo
(
a
)
2
{
3
return
(
a
<<
16
) & ~
0xffff
;
4
}
5
6
foobar
(
a
)
7
{
8
return
((
unsigned short
)
a
) <<
15
;}
9
10
foo
(
a
)
11
{
12
return
(
a
&
0x121
) <<
31
;
13
}
14
15
bar
(
a
)
16
{
17
return
(
a
& ~
0xffff
) <<
16
;
18
}
19
20
main
()
21
{
22
int
a
;
23
24
for
(
a
=
1
;
a
;
a
+=
a
)
25
{
26
printf
(
"%d"
, (
foo
(
a
)));
27
}
28
puts
(
""
);
29
}
30