Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
gcc.target
/
nvptx
/
int128.c
blob: 069dbbfe12b833f8b631d60c257713b0f889351c [
file
] [
log
] [
blame
]
/* { dg-do run } */
/* { dg-additional-options "-Wno-pedantic" } */
__int128 one
=
1
;
__int128 min_one
=
-
1
;
__int128 zero
=
0
;
int
main
(
void
)
{
if
(
zero
-
one
!=
min_one
)
__builtin_abort
();
return
0
;
}