repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr33160.C
blob
e463e2dfd1ca17a6aba915a7a99da5a449d547ed
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