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/81384 - built-in form of strnlen missing
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20001017-2.c
blob
3263bb9b54e7f5ba59d2d51f80927b781adc48e5
1
void
2
fn_4parms
(
unsigned char
a
,
long
*
b
,
long
*
c
,
unsigned int
*
d
)
3
{
4
if
(*
b
!=
1
|| *
c
!=
2
|| *
d
!=
3
)
5
abort
();
6
}
7
8
int
9
main
()
10
{
11
unsigned char
a
=
0
;
12
unsigned long
b
=
1
,
c
=
2
;
13
unsigned int
d
=
3
;
14
15
fn_4parms
(
a
, &
b
, &
c
, &
d
);
16
return
0
;
17
}