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
PR tree-optimization/67955
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
pr55771.c
blob
16f02442c111b7a997cb9c22783bbbb6098a9dcc
1
/* { dg-do run } */
2
3
float
global
;
4
int
main
()
5
{
6
unsigned long
z
=
1
;
7
float
x
= -
z
;
8
global
=
x
;
9
if
(
global
<
0
)
10
__builtin_abort
();
11
return
0
;
12
}