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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20051228-1.c
blob
e997ae3946bffa45d5ccbd629ac2650d6d8ef56e
1
/* PR target/25554 */
2
/* Bitwise shift with negative shift count has undefined behavior,
3
but we shouldn't ICE on it. */
4
5
void
6
foo
(
long
x
)
7
{
8
if
(((
x
>> -
2
) &
1
) !=
0
)
9
bar
();
10
}