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
* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wpointer-sign-Wall.c
blob
e72d37a18ce5648598dd39af9cd1ac3e1d106d9f
1
/* This is from PR c/25892. See Wpointer-sign.c for more details. */
2
3
/* { dg-options "-Wall" } */
4
5
void
foo
(
unsigned long
*
ulp
);
6
7
void
bar
(
long
*
lp
) {
8
foo
(
lp
);
/* { dg-warning "differ in signedness" } */
9
}