Commit 61fdde38 by Jim Wilson Committed by Jim Wilson

Test miscompiled for v850 target with -O -mv850e due to cse bug.

	* gcc.c-torture/execute/20021010-1.c: New test.

From-SVN: r58025
parent 83a3aefb
2002-10-10 Jim Wilson <wilson@redhat.com>
* gcc.c-torture/execute/20021010-1.c: New test.
2002-10-09 Zack Weinberg <zack@codesourcery.com>
PR c/7353
......
#include <limits.h>
int
sub ()
{
int dummy = 0, a = 16;
if (a / INT_MAX / 16 == 0)
return 0;
else
return a / INT_MAX / 16;
}
int
main ()
{
if (sub () != 0)
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