2006-09-10 Andrew Pinski <pinskia@physics.uc.edu>
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
+2006-09-10 Andrew Pinski <pinskia@physics.uc.edu>
+
+ 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 <ebotcazou@libertysurf.fr>
* gcc.c-torture/execute/20060910-1.c: New test.
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;
}