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
Revert "PR 117048: simplify-rtx: Simplify (X << C1) [+,^] (X >> C2) into ROTATE"
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr34982.c
blob
4289a1842498b7c5d65f02d826cabc53408a8ea0
1
/* { dg-additional-options "-std=gnu17" } */
2
3
extern
void
abort
(
void
);
4
5
static void
something
();
6
7
int
main
()
8
{
9
something
(-
1
);
10
return
0
;
11
}
12
13
static void
something
(
int
i
)
14
{
15
if
(
i
!= -
1
)
16
abort
();
17
}