From 96f2fafeee83cf1cf50d8485c905c805ae291cd8 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Sun, 10 Sep 2006 23:15:31 +0000 Subject: [PATCH] re PR testsuite/29007 (FAIL: gcc.dg/long-long-cst1.c execution test) 2006-09-10 Andrew Pinski PR testsuite/29007 * gcc.dg/long-long-cst1.c (t): Add cast to __SIZE_TYPE__ before casting to int. (main): Return 0 on success. From-SVN: r116832 --- gcc/testsuite/ChangeLog | 7 +++++++ gcc/testsuite/gcc.dg/long-long-cst1.c | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 45bd6ed94b2..ebddaa604a0 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2006-09-10 Andrew Pinski + + PR testsuite/29007 + * gcc.dg/long-long-cst1.c (t): Add cast to + __SIZE_TYPE__ before casting to int. + (main): Return 0 on success. + 2006-09-10 Eric Botcazou * gcc.c-torture/execute/20060910-1.c: New test. diff --git a/gcc/testsuite/gcc.dg/long-long-cst1.c b/gcc/testsuite/gcc.dg/long-long-cst1.c index 7c120dc14c9..7c60648d281 100644 --- a/gcc/testsuite/gcc.dg/long-long-cst1.c +++ b/gcc/testsuite/gcc.dg/long-long-cst1.c @@ -7,11 +7,12 @@ extern void abort(); struct st{ int _mark; }; -unsigned long long t = ((int)&(((struct st*)16)->_mark) - 32); +unsigned long long t = ((int)(__SIZE_TYPE__)&(((struct st*)16)->_mark) - 32); int main() { if (t != (unsigned long long)(int)-16) abort (); + return 0; } -- 2.30.2