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
In gcc/testsuite/: 2011-03-04 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wpointer-sign-pedantic-no.c
blob
d4f597fe79e9a7203b40565a0b8a63cb719d1588
1
/* This is from PR c/25892. See Wpointer-sign.c for more details. */
2
3
/* { dg-options "-Wno-pointer-sign -pedantic" } */
4
5
void
foo
(
unsigned long
*
ulp
);
6
7
void
bar
(
long
*
lp
) {
8
foo
(
lp
);
9
}