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
* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr46019.c
blob
b0365576ac854ce04f0cbcd9decbd6d7dee5f61c
1
/* PR middle-end/46019 */
2
3
extern
void
abort
(
void
);
4
5
int
6
main
(
void
)
7
{
8
unsigned long long
l
=
0x40000000000
ULL
;
9
int
n
;
10
for
(
n
=
0
;
n
<
8
;
n
++)
11
if
(
l
/ (
0x200000000
ULL
<<
n
) != (
0x200
>>
n
))
12
abort
();
13
return
0
;
14
}