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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr68067-1.c
blob
f8ad3ca0168d8e2fa78de58efc30f252b2938798
1
/* { dg-do run } */
2
/* { dg-require-effective-target int32plus } */
3
4
int
main
()
5
{
6
int
a
= -
1
;
7
static int
b
= -
2147483647
-
1
;
8
static int
c
=
0
;
9
int
t
=
a
- (
b
-
c
);
10
if
(
t
!=
2147483647
)
11
__builtin_abort
();
12
return
0
;
13
}