From: Andrew Pinski Date: Sun, 10 Sep 2006 23:15:31 +0000 (+0000) Subject: re PR testsuite/29007 (FAIL: gcc.dg/long-long-cst1.c execution test) X-Git-Tag: releases/gcc-4.2.0~1458 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96f2fafeee83cf1cf50d8485c905c805ae291cd8;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 45bd6ed94b21..ebddaa604a02 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 7c120dc14c98..7c60648d281c 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; }