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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr26898-2.c
blob
508fde4ce7dc04804823fa1770620c900fc2c00d
1
/* { dg-do run } */
2
3
#include <limits.h>
4
5
int
a
=
0
,
b
=
INT_MAX
-
1
;
6
extern
void
abort
(
void
);
7
int
main
()
8
{
9
if
(
a
-
1
>
b
+
1
)
10
abort
();
11
return
0
;
12
}