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
AVR: target/84211 - Add a post reload register optimization pass.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr78416.c
blob
5028156f4fa16eac8bad4a08fd96cb1e8afe0535
1
/* PR middle-end/78416 */
2
/* { dg-do run { target int128 } } */
3
4
int
5
main
()
6
{
7
unsigned
__int128 x
;
8
x
=
0xFFFFFFFFFFFFFFFF
ULL
;
9
x
/= ~
0x7FFFFFFFFFFFFFFF
LL
;
10
if
(
x
!=
0
)
11
__builtin_abort
();
12
x
= ~
0x7FFFFFFFFFFFFFFE
LL
;
13
x
/= ~
0x7FFFFFFFFFFFFFFF
LL
;
14
if
(
x
!=
1
)
15
__builtin_abort
();
16
return
0
;
17
}