[gcc-6] 89/401: * GCC 6 snapshot build, taken from the trunk 20160225.

Ximin Luo infinity0 at debian.org
Wed Apr 5 15:48:06 UTC 2017


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

infinity0 pushed a commit to branch pu/reproducible_builds
in repository gcc-6.

commit 4778ac8a4c2b3ede52736460ae8b54e8587988ae
Author: doko <doko at 6ca36cf4-e1d1-0310-8c6f-e303bb2178ca>
Date:   Thu Feb 25 01:05:08 2016 +0000

      * GCC 6 snapshot build, taken from the trunk 20160225.
    
    
    git-svn-id: svn://anonscm.debian.org/gcccvs/branches/sid/gcc-6@8690 6ca36cf4-e1d1-0310-8c6f-e303bb2178ca
---
 debian/changelog            |  5 +++--
 debian/patches/gdc-fix.diff | 15 -------------
 debian/patches/pr69885.diff | 55 ---------------------------------------------
 debian/patches/pr69895.diff | 42 ----------------------------------
 debian/rules.patch          |  3 ---
 5 files changed, 3 insertions(+), 117 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 006e0fc..f436002 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,10 @@
-gcc-6 (6-20160220-2) UNRELEASED; urgency=medium
+gcc-6 (6-20160225-1) UNRELEASED; urgency=medium
 
+  * GCC 6 snapshot build, taken from the trunk 20160225.
   * Install missing architecture specific plugin header files.
   * Fix PR target/69885, bootstrap error on m68k.
 
- -- Matthias Klose <doko at debian.org>  Sun, 21 Feb 2016 16:13:26 +0100
+ -- Matthias Klose <doko at debian.org>  Thu, 25 Feb 2016 02:00:57 +0100
 
 gcc-6 (6-20160220-1) experimental; urgency=medium
 
diff --git a/debian/patches/gdc-fix.diff b/debian/patches/gdc-fix.diff
deleted file mode 100644
index 4f2111f..0000000
--- a/debian/patches/gdc-fix.diff
+++ /dev/null
@@ -1,15 +0,0 @@
-# DP: Fix gdc to build with current trunk
-
---- a/src/gcc/d/d-lang.cc
-+++ b/src/gcc/d/d-lang.cc
-@@ -252,8 +252,8 @@
-   // This allows the code in d-builtins.c to not have to worry about
-   // converting (C signed char *) to (D char *) for string arguments of
-   // built-in functions.
--  // Parameters are (signed_char = false, short_double = false).
--  build_common_tree_nodes (false, false);
-+  // Parameters are (signed_char = false).
-+  build_common_tree_nodes (false);
- 
-   d_init_builtins();
- 
diff --git a/debian/patches/pr69885.diff b/debian/patches/pr69885.diff
deleted file mode 100644
index be5f598..0000000
--- a/debian/patches/pr69885.diff
+++ /dev/null
@@ -1,55 +0,0 @@
-# DP: Proposed fix for PR target/69885 (m68k)
-
-2016-02-22  Jakub Jelinek  <jakub at redhat.com>
-
-	PR target/69885
-	* config/m68k/m68k.md (ashldi3, ashrdi3, lshrdi3): Use
-	SImode for last match_operand.
-
-	* gcc.dg/pr69885.c: New test.
-
---- a/src/gcc/config/m68k/m68k.md.jj	2016-01-20 10:55:16.000000000 +0100
-+++ a/src/gcc/config/m68k/m68k.md	2016-02-22 11:14:01.789697673 +0100
-@@ -4544,7 +4544,7 @@ (define_insn "*ashldi3"
- (define_expand "ashldi3"
-   [(set (match_operand:DI 0 "register_operand" "")
- 	(ashift:DI (match_operand:DI 1 "register_operand" "")
--		   (match_operand 2 "const_int_operand" "")))]
-+		   (match_operand:SI 2 "const_int_operand" "")))]
-   "!TARGET_COLDFIRE"
- {
-   /* ???  This is a named pattern like this is not allowed to FAIL based
-@@ -4813,7 +4813,7 @@ (define_insn "ashrdi_const"
- (define_expand "ashrdi3"
-   [(set (match_operand:DI 0 "register_operand" "")
- 	(ashiftrt:DI (match_operand:DI 1 "register_operand" "")
--		     (match_operand 2 "const_int_operand" "")))]
-+		     (match_operand:SI 2 "const_int_operand" "")))]
-   "!TARGET_COLDFIRE"
- {
-   /* ???  This is a named pattern like this is not allowed to FAIL based
-@@ -5082,7 +5082,7 @@ (define_insn "*lshrdi3_const"
- (define_expand "lshrdi3"
-   [(set (match_operand:DI 0 "register_operand" "")
- 	(lshiftrt:DI (match_operand:DI 1 "register_operand" "")
--		     (match_operand 2 "const_int_operand" "")))]
-+		     (match_operand:SI 2 "const_int_operand" "")))]
-   "!TARGET_COLDFIRE"
- {
-   /* ???  This is a named pattern like this is not allowed to FAIL based
---- a/src/gcc/testsuite/gcc.dg/pr69885.c.jj	2016-02-22 11:14:50.981023120 +0100
-+++ a/src/gcc/testsuite/gcc.dg/pr69885.c	2016-02-22 11:13:45.000000000 +0100
-@@ -0,0 +1,13 @@
-+/* PR target/69885 */
-+/* { dg-do compile } */
-+/* { dg-options "-O2" } */
-+/* { dg-additional-options "-m68000" { target m68k*-*-* } } */
-+
-+void bar (void);
-+
-+void
-+foo (long long x)
-+{
-+  if (x >> 1)
-+    bar ();
-+}
diff --git a/debian/patches/pr69895.diff b/debian/patches/pr69895.diff
deleted file mode 100644
index e26c73b..0000000
--- a/debian/patches/pr69895.diff
+++ /dev/null
@@ -1,42 +0,0 @@
-# DP: Fix PR target/69895, installation of plugin headers.
-
-2016-02-22  Jakub Jelinek  <jakub at redhat.com>
-
-	PR target/69895
-	* config/m68k/t-opts (OPTIONS_H_EXTRA): Add m68k-microarchs.def
-	and m68k-devices.def.
-	* config/c6x/t-c6x (OPTIONS_H_EXTRA): Add c6x-isas.def.
-	* config/aarch64/t-aarch64 (OPTIONS_H_EXTRA): Add aarch64-arches.def.
-
---- a/src/gcc/config/m68k/t-opts.jj	2011-05-02 18:39:25.000000000 +0200
-+++ a/src/gcc/config/m68k/t-opts	2016-02-22 09:21:44.420267750 +0100
-@@ -1,3 +1,6 @@
-+OPTIONS_H_EXTRA += $(srcdir)/config/m68k/m68k-microarchs.def \
-+		   $(srcdir)/config/m68k/m68k-devices.def
-+
- $(srcdir)/config/m68k/m68k-tables.opt: $(srcdir)/config/m68k/genopt.sh \
-   $(srcdir)/config/m68k/m68k-devices.def $(srcdir)/config/m68k/m68k-isas.def \
-   $(srcdir)/config/m68k/m68k-microarchs.def
---- a/src/gcc/config/c6x/t-c6x.jj	2016-01-04 14:55:54.000000000 +0100
-+++ a/src/gcc/config/c6x/t-c6x	2016-02-22 09:25:56.272819642 +0100
-@@ -23,6 +23,8 @@ MD_INCLUDES= 	$(srcdir)/config/c6x/const
- 		$(srcdir)/config/c6x/c6x-mult.md \
- 		$(srcdir)/config/c6x/c6x-sched.md
- 
-+OPTIONS_H_EXTRA += $(srcdir)/config/c6x/c6x-isas.def
-+
- s-config s-conditions s-flags s-codes s-constants s-emit s-recog s-preds \
- 	s-opinit s-extract s-peep s-attr s-attrtab s-output: $(MD_INCLUDES)
- 
---- a/src/gcc/config/aarch64/t-aarch64.jj	2016-01-04 14:55:56.000000000 +0100
-+++ a/src/gcc/config/aarch64/t-aarch64	2016-02-22 09:30:03.656432719 +0100
-@@ -19,7 +19,8 @@
- #  <http://www.gnu.org/licenses/>.
- 
- TM_H += $(srcdir)/config/aarch64/aarch64-cores.def
--OPTIONS_H_EXTRA += $(srcdir)/config/aarch64/aarch64-cores.def
-+OPTIONS_H_EXTRA += $(srcdir)/config/aarch64/aarch64-cores.def \
-+		   $(srcdir)/config/aarch64/aarch64-arches.def
- 
- $(srcdir)/config/aarch64/aarch64-tune.md: $(srcdir)/config/aarch64/gentune.sh \
- 	$(srcdir)/config/aarch64/aarch64-cores.def
diff --git a/debian/rules.patch b/debian/rules.patch
index 740343a..bacc322 100644
--- a/debian/rules.patch
+++ b/debian/rules.patch
@@ -81,8 +81,6 @@ debian_patches += \
 	pr67590 \
 	ada-gnattools-ldflags \
 	libjit-ldflags \
-	pr69895 \
-	pr69885 \
 
 # this is still needed on powerpc, e.g. firefox and insighttoolkit4 will ftbfs.
 ifneq (,$(filter $(DEB_TARGET_ARCH),powerpc))
@@ -168,7 +166,6 @@ endif
 ifeq ($(with_d),yes)
   debian_patches += \
 	gdc-6 \
-	gdc-fix \
 	gdc-updates \
 	gdc-versym-cpu \
 	gdc-versym-os \

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/gcc-6.git



More information about the Reproducible-commits mailing list