aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pta-escape-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/torture/pta-escape-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/torture/pta-escape-1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/torture/pta-escape-1.c b/gcc/testsuite/gcc.dg/torture/pta-escape-1.c
index dbfd4c9..d3cb254 100644
--- a/gcc/testsuite/gcc.dg/torture/pta-escape-1.c
+++ b/gcc/testsuite/gcc.dg/torture/pta-escape-1.c
@@ -9,7 +9,7 @@ bar (void)
*p = 1;
}
int __attribute__((noinline,noclone))
-foo (__SIZE_TYPE__ addr)
+foo (__INTPTR_TYPE__ addr)
{
int i;
/* q points to ANYTHING */
@@ -25,7 +25,7 @@ extern void abort (void);
int
main()
{
- if (foo ((__SIZE_TYPE__)&p) != 1)
+ if (foo ((__INTPTR_TYPE__)&p) != 1)
abort ();
return 0;
}