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
Rebase.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr44695.c
blob
85bb4c7b9271ea5b3a067b05303afa0abbf840e5
1
/* { dg-do compile } */
2
3
typedef
unsigned char uint8_t
;
4
5
static uint8_t
6
safe_div_func_uint8_t_u_u
(
uint8_t
ui1
,
uint8_t
ui2
)
7
{
8
return
ui2
?
ui2
: (
ui1
/
ui2
);
9
}
10
11
int
12
int81
(
int
x
)
13
{
14
return
safe_div_func_uint8_t_u_u
(
1
,
8
&
x
);
15
}