comparison gcc/testsuite/g++.dg/warn/pr33160.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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