aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/trunctfdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/trunctfdf.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/trunctfdf.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/trunctfdf.c b/gcc/testsuite/gcc.c-torture/compile/trunctfdf.c
deleted file mode 100644
index 29d6ed0dc9a..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/trunctfdf.c
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Sparc w/128-bit long double bombed on this because even though
- the trunctfdf libcall passed the long double by reference, the
- libcall was still marked as LCT_CONST instead of LCT_PURE. */
-
-double *copy(long double *first, long double *last, double *result)
-{
- int n;
- for (n = last - first; n > 0; --n) {
- *result = *first;
- ++first;
- ++result;
- }
- return result;
-}