]> git.proxmox.com Git - qemu.git/blame - tests/cris/check_gcctorture_pr28634-1.c
configure: Copy test data to build directory
[qemu.git] / tests / cris / check_gcctorture_pr28634-1.c
CommitLineData
dd43edf4
TS
1/* PR rtl-optimization/28634. On targets with delayed branches,
2 dbr_schedule could do the next iteration's addition in the
3 branch delay slot, then subtract the value again if the branch
4 wasn't taken. This can lead to rounding errors. */
5int x = -1;
6int y = 1;
7int
8main (void)
9{
10 while (y > 0)
11 y += x;
12 if (y != x + 1)
13 abort ();
14 exit (0);
15}