Commit 07fd50ea by Jeffrey A Law Committed by Jeff Law

* gcc.c-torture/execute/20000314-2.c: New test.

From-SVN: r32532
parent 263ac0d8
Tue Mar 14 08:58:37 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/20000314-2.c: New test.
* gcc.c-torture/execute/20000314-1.c: New test.
* gcc.c-torture/compile/20000314-2.c: New test.
* gcc.c-torture/compile/20000314-1.c: New test.
......
typedef unsigned long long uint64;
const uint64 bigconst = 1ULL << 34;
int a = 1;
static
uint64 getmask(void)
{
if (a)
return bigconst;
else
return 0;
}
main()
{
uint64 f = getmask();
if (sizeof (long long) == 8
&& f != bigconst) abort ();
exit (0);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment