Commit d6a007a2 by Jim Wilson Committed by Jim Wilson

Testcase for loop reversal (check_dbra_loop) bug.

From-SVN: r19031
parent 668d07be
Tue Apr 7 12:01:24 1998 Jim Wilson <wilson@cygnus.com>
* execute/980407-1.c: New test from Joern Rennecke.
Fri Apr 3 12:27:49 1998 Jim Wilson <wilson@cygnus.com> Fri Apr 3 12:27:49 1998 Jim Wilson <wilson@cygnus.com>
* compile/980329-1.c: New test. * compile/980329-1.c: New test.
......
int
f()
{
int j = 1;
long i;
for (i = -0x70000000L; i < 0x60000000L; i += 0x10000000L) j <<= 1;
return j;
}
int
main ()
{
if (f () != 8192)
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