summaryrefslogtreecommitdiff
path: root/packages/glibc/2.15/0050-fdivp-order.patch
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2021-09-21 07:56:07 (GMT)
committerChris Packham <judge.packham@gmail.com>2021-09-21 09:24:31 (GMT)
commit3d2b48fb7a7b958575714d1d3ca180c53aeb8604 (patch)
tree6b0a8cd4a87d4912e4fc0d8dc7286ec7dc820a9b /packages/glibc/2.15/0050-fdivp-order.patch
parent793b2503458b874e58c9d7fafc68686ecb9fd071 (diff)
glibc: Remove obsolete versions
The following versions were marked obsolete in crosstool-ng-1.24.0, remove them. - glibc-linaro-2.20-2014.11 - glibc-2.12.2 - glibc-2.13 - glibc-2.14.1 - glibc-2.15 - glibc-2.16.0 - glibc-2.18 - glibc-2.20 - glibc-2.21 - glibc-2.22 Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/glibc/2.15/0050-fdivp-order.patch')
-rw-r--r--packages/glibc/2.15/0050-fdivp-order.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/packages/glibc/2.15/0050-fdivp-order.patch b/packages/glibc/2.15/0050-fdivp-order.patch
deleted file mode 100644
index 159c9c4..0000000
--- a/packages/glibc/2.15/0050-fdivp-order.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-commit 751728a1f10cdaf35c499c1d508a3a28ccfddc92
-Author: Marek Polacek <polacek@redhat.com>
-Date: Mon Apr 16 11:03:41 2012 +0200
-
- Reverse arguments of fdivp in i386 code.
-
----
- sysdeps/i386/fpu/bits/fenv.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
---- a/sysdeps/i386/fpu/bits/fenv.h
-+++ b/sysdeps/i386/fpu/bits/fenv.h
-@@ -1,4 +1,4 @@
--/* Copyright (C) 1997, 1998, 1999, 2000, 2011 Free Software Foundation, Inc.
-+/* Copyright (C) 1997-2012 Free Software Foundation, Inc.
- This file is part of the GNU C Library.
-
- The GNU C Library is free software; you can redistribute it and/or
-@@ -122,7 +122,7 @@
- # ifdef __SSE_MATH__
- __asm__ __volatile__ ("divss %1, %0" : : "x" (__f), "x" (__g));
- # else
-- __asm__ __volatile__ ("fdivp %%st(1), %%st; fwait"
-+ __asm__ __volatile__ ("fdivp %%st, %%st(1); fwait"
- : "=t" (__f) : "0" (__f), "u" (__g) : "st(1)");
- # endif
- (void) &__f;