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
AVR: target/84211 - Add a post reload register optimization pass.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr104280.c
blob
c5a1d9bcd27b4adef0ddb2ec1f83cefa170fbeeb
1
/* PR tree-optimization/104280 */
2
/* { dg-do run } */
3
4
int
5
foo
(
unsigned
b
,
int
c
)
6
{
7
return
b
/
c
;
8
}
9
10
int
11
main
()
12
{
13
if
(
foo
(
1
,
2
) !=
0
)
14
__builtin_abort
();
15
return
0
;
16
}