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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
bx.c
blob
274fb015cf58eb2ed3e495cea0039e899c38b03b
1
unsigned
2
good
(
unsigned
src
,
unsigned
o5
,
unsigned
w5
)
3
{
4
return
src
& ~((
w5
==
0
) ? (~
0
<<
o5
) : (
1
<<
o5
));
5
}
6
7
unsigned
8
bad
(
unsigned
src
,
unsigned
o5
,
unsigned
w5
)
9
{
10
return
src
& ((
w5
==
0
) ? ~(~
0
<<
o5
) : ~(
1
<<
o5
));
11
}
12