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
Merge from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wpointer-sign-pedantic.c
blob
25e25209e524d98220ae5a9f1e03ee434ddf1aa9
1
/* This is from PR c/25892. See Wpointer-sign.c for more details. */
2
3
/* { dg-options "-pedantic" } */
4
5
void
foo
(
unsigned long
*
ulp
);
6
7
void
bar
(
long
*
lp
) {
8
foo
(
lp
);
/* { dg-warning "differ in signedness" } */
9
}