[DHG_packages] 01/01: Actually delete unused patch ARM-barriers.

Joachim Breitner nomeata at moszumanska.debian.org
Fri Nov 6 10:28:19 UTC 2015


This is an automated email from the git hooks/post-receive script.

nomeata pushed a commit to branch experimental
in repository DHG_packages.

commit 9ac55a30fa855209b259339dc303acda90a610c8
Author: Joachim Breitner <mail at joachim-breitner.de>
Date:   Fri Nov 6 11:27:57 2015 +0100

    Actually delete unused patch ARM-barriers.
---
 p/ghc/debian/patches/ARM-barriers.patch | 38 ---------------------------------
 1 file changed, 38 deletions(-)

diff --git a/p/ghc/debian/patches/ARM-barriers.patch b/p/ghc/debian/patches/ARM-barriers.patch
deleted file mode 100644
index 1a3a424..0000000
--- a/p/ghc/debian/patches/ARM-barriers.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 5fcb235d132065bc08752612f91a6d7c01d4fd6d Mon Sep 17 00:00:00 2001
-From: Sergei Trofimovich <siarheit at google.com>
-Date: Wed, 13 May 2015 23:13:57 +0100
-Subject: [PATCH] includes/stg/SMP.h: implement load_/store_load_barrier on
- armv6 and older
-
-Fixes trac: #10244
-
-Signed-off-by: Sergei Trofimovich <siarheit at google.com>
----
- includes/stg/SMP.h | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/includes/stg/SMP.h b/includes/stg/SMP.h
-index 5ded05d..5460a2b 100644
---- a/includes/stg/SMP.h
-+++ b/includes/stg/SMP.h
-@@ -373,6 +373,8 @@ store_load_barrier(void) {
-     __asm__ __volatile__ ("sync" : : : "memory");
- #elif sparc_HOST_ARCH
-     __asm__ __volatile__ ("membar #StoreLoad" : : : "memory");
-+#elif arm_HOST_ARCH && defined(arm_HOST_ARCH_PRE_ARMv7)
-+    __asm__ __volatile__ ("" : : : "memory");
- #elif arm_HOST_ARCH && !defined(arm_HOST_ARCH_PRE_ARMv7)
-     __asm__ __volatile__ ("dmb" : : : "memory");
- #elif aarch64_HOST_ARCH
-@@ -395,6 +397,8 @@ load_load_barrier(void) {
- #elif sparc_HOST_ARCH
-     /* Sparc in TSO mode does not require load/load barriers. */
-     __asm__ __volatile__ ("" : : : "memory");
-+#elif arm_HOST_ARCH && defined(arm_HOST_ARCH_PRE_ARMv7)
-+    __asm__ __volatile__ ("" : : : "memory");
- #elif arm_HOST_ARCH && !defined(arm_HOST_ARCH_PRE_ARMv7)
-     __asm__ __volatile__ ("dmb" : : : "memory");
- #elif aarch64_HOST_ARCH
--- 
-2.3.6
-

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-haskell/DHG_packages.git



More information about the Pkg-haskell-commits mailing list