aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/pr33160.C
blob: e463e2dfd1ca17a6aba915a7a99da5a449d547ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR 33160
// { dg-do compile }
// { dg-options "-Wall -Wextra -Wpointer-arith -pedantic -Wconversion" }

typedef int __attribute__((mode(pointer))) intptr_t;
int foo(void)
{
 intptr_t t = 0;
 if (t != ((intptr_t)__null)) t = 1;
 return 0;
}