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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wint-conversion.c
blob
1b7a03e431121ab9b4710ef5e7684f35821807c5
1
/* { dg-do compile } */
2
/* { dg-options "-Wno-int-conversion" } */
3
4
int
fn1
(
int
*), *
fn2
(
int
);
5
6
int
7
fn1
(
int
*
p
)
8
{
9
int
i
=
p
;
10
i
=
p
;
11
fn2
(
p
);
12
return
p
;
13
}
14
15
int
*
16
fn2
(
int
i
)
17
{
18
int
*
p
=
i
;
19
p
=
i
;
20
fn1
(
i
);
21
return
i
;
22
}