aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJonathan Yong <10walls@gmail.com>2023-01-28 18:12:50 +0000
committerJonathan Yong <10walls@gmail.com>2023-02-11 08:27:27 +0000
commit391f29e60a95335c925040641e99ddef57edac6d (patch)
tree74be61b426a7e7135fde8d125c36cd6184a073a2 /gcc
parent76ab4084d033053f430c7429c2f2f3d2a76bc6b3 (diff)
downloadgcc-391f29e60a95335c925040641e99ddef57edac6d.zip
gcc-391f29e60a95335c925040641e99ddef57edac6d.tar.gz
gcc-391f29e60a95335c925040641e99ddef57edac6d.tar.bz2
pr65658.c: fix excess warnings on LLP64 targets
gcc/testsuite/ChangeLog: * gcc.dg/pr65658.c: fix LLP64 test. Signed-off-by: Jonathan Yong <10walls@gmail.com>
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gcc.dg/pr65658.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/testsuite/gcc.dg/pr65658.c b/gcc/testsuite/gcc.dg/pr65658.c
index bb5c37a..4847dc2 100644
--- a/gcc/testsuite/gcc.dg/pr65658.c
+++ b/gcc/testsuite/gcc.dg/pr65658.c
@@ -16,10 +16,10 @@ struct undeffoo
};
struct problem
{
- unsigned long l1;
- unsigned long l2;
- unsigned long l3;
- unsigned long l4;
+ __UINTPTR_TYPE__ l1;
+ __UINTPTR_TYPE__ l2;
+ __UINTPTR_TYPE__ l3;
+ __UINTPTR_TYPE__ l4;
};
static unsigned int undef1, undef2, undef3, undef4, undef5, undef6;
static void *undefvp1;
@@ -37,7 +37,7 @@ undefinit1 (void)
}
static int
-undefinit2 (void *problemp, unsigned long problem)
+undefinit2 (void *problemp, __UINTPTR_TYPE__ problem)
{
int ret, u;
if (undefinit1 ())
@@ -60,7 +60,7 @@ fn6 (struct undefinfo *uip, struct problem *problem)
unsigned long amt;
if (external_function3 (((void *) 0), ((void *) 0), &amt, 0, 0))
return 1;
- problem->l1 = (unsigned long) undefvp1;
+ problem->l1 = (__UINTPTR_TYPE__) undefvp1;
problem->l4 = uip->l1;
problem->l3 = uip->l2;
return 0;