aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wpointer-sign-Wall-no.c
blob: 23df20721c8e11d9240481f6d6cf094e3bac4b97 (plain)
1
2
3
4
5
6
7
8
9
/* This is from PR c/25892.  See Wpointer-sign.c for more details.  */

/* { dg-options "-Wno-pointer-sign -Wall" } */

void foo(unsigned long* ulp);

void bar(long* lp) {
  foo(lp);
}