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
PR middle-end/30262
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
921202-2.c
blob
48d4a412d1bdb65dcff61198ec916fc8fed67a6a
1
int
2
f
(
long long
x
)
3
{
4
x
>>=
8
;
5
return
x
&
0xff
;
6
}
7
8
main
()
9
{
10
if
(
f
(
0x0123456789ABCDEF
LL
) !=
0xCD
)
11
abort
();
12
exit
(
0
);
13
}