OSDN Git Service

2010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / pr33160.C
1 // PR 33160
2 // { dg-do compile }
3 // { dg-options "-Wall -Wextra -Wpointer-arith -pedantic -Wconversion" }
4
5 typedef int __attribute__((mode(pointer))) intptr_t;
6 int foo(void)
7 {
8  intptr_t t = 0;
9  if (t != ((intptr_t)__null)) t = 1;
10  return 0;
11 }
12