Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
pr33160.C
blob: e463e2dfd1ca17a6aba915a7a99da5a449d547ed [
file
] [
log
] [
blame
]
// 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
;
}