Commit 11a35b8b by Alan Modra Committed by Alan Modra

New test.

From-SVN: r50012
parent 8041889f
2002-02-25 Alan Modra <amodra@bigpond.net.au>
* gcc.c-torture/execute/20020225-1.c: New.
2002-02-24 Neil Booth <neil@daikokuya.demon.co.uk>
* testsuite/gcc.dg/cpp/wchar-1.c: New test.
......
/* This testcase failed at -O2 on powerpc64 due to andsi3 writing
non-zero bits to the high 32 bits of a 64 bit register. */
extern void abort (void);
extern void exit (int);
unsigned long foo (unsigned long base, unsigned int val)
{
return base + (val & 0x80000001);
}
int main (void)
{
if (foo (0L, 0x0ffffff0) != 0L)
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