Commit 8592c207 by Andrew Pinski Committed by Andrew Pinski

20141125-1.c: New testcase.

2014-11-25  Andrew Pinski <apinski@cavium.com>

        * gcc.c-torture/execute/20141125-1.c: New testcase.

From-SVN: r218073
parent 64b4bb60
2014-11-25 Andrew Pinski <apinski@cavium.com>
* gcc.c-torture/execute/20141125-1.c: New testcase.
2014-11-25 Tobias Burnus <burnus@net-b.de> 2014-11-25 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/empty_label.f: Change test to continue testing * gfortran.dg/empty_label.f: Change test to continue testing
......
int f(long long a) __attribute__((noinline,noclone));
int f(long long a)
{
if (a & 0x3ffffffffffffffull)
return 1;
return 1024;
}
int main(void)
{
if(f(0x48375d8000000000ull) != 1)
__builtin_abort ();
if (f(0xfc00000000000000ull) != 1024)
__builtin_abort ();
return 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