aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/cris/check_gcctorture_pr28634.c
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-12-07 10:28:31 +0000
committerAlex Bennée <alex.bennee@linaro.org>2019-03-12 17:05:21 +0000
commitd4f6e58fcbab1fa2df123e3849dd95f30400a896 (patch)
treedc63da617d6ddf108554dd379cc56a7b9014d080 /tests/tcg/cris/check_gcctorture_pr28634.c
parent6b970dd62cb67375f6267294d38798d9199e487b (diff)
tests/tcg: split cris tests into bare and libc directories
Bare tests are standalone assembly tests that don't require linking to any libc and hence can be built with kernel only compilers. The libc tests need a compiler capable of building properly linked userspace binaries. As we don't have such a cross compiler at the moment we won't be building those tests. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'tests/tcg/cris/check_gcctorture_pr28634.c')
-rw-r--r--tests/tcg/cris/check_gcctorture_pr28634.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/tcg/cris/check_gcctorture_pr28634.c b/tests/tcg/cris/check_gcctorture_pr28634.c
deleted file mode 100644
index a0c525497d..0000000000
--- a/tests/tcg/cris/check_gcctorture_pr28634.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* PR rtl-optimization/28634. On targets with delayed branches,
- dbr_schedule could do the next iteration's addition in the
- branch delay slot, then subtract the value again if the branch
- wasn't taken. This can lead to rounding errors. */
-double x = -0x1.0p53;
-double y = 1;
-int
-main (void)
-{
- while (y > 0)
- y += x;
- if (y != x + 1)
- abort ();
- exit (0);
-}