[gcc-7] 57/354: * GCC 7 snapshot build, taken from the trunk 20161125.

Ximin Luo infinity0 at debian.org
Thu Nov 23 15:50:30 UTC 2017


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

infinity0 pushed a commit to branch master
in repository gcc-7.

commit aef019e05894d3b34734c039fe4ad4c257caf346
Author: doko <doko at 6ca36cf4-e1d1-0310-8c6f-e303bb2178ca>
Date:   Fri Nov 25 11:55:38 2016 +0000

      * GCC 7 snapshot build, taken from the trunk 20161125.
    
    
    git-svn-id: svn+ssh://svn.debian.org/svn/gcccvs/branches/sid/gcc-7@9143 6ca36cf4-e1d1-0310-8c6f-e303bb2178ca
---
 debian/changelog            |  6 +++---
 debian/patches/pr78501.diff | 34 ----------------------------------
 debian/rules.patch          |  1 -
 3 files changed, 3 insertions(+), 38 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index aaaca31..b4c870b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,6 @@
-gcc-7 (7-20161124-1) UNRELEASED; urgency=medium
+gcc-7 (7-20161125-1) experimental; urgency=medium
 
-  * GCC 7 snapshot build, taken from the trunk 20161124.
+  * GCC 7 snapshot build, taken from the trunk 20161125.
 
   [ Matthias Klose ]
   * Update libgphobos symbol files.
@@ -18,7 +18,7 @@ gcc-7 (7-20161124-1) UNRELEASED; urgency=medium
   * Update gnat patches for GCC 7, stop building libgnatvsn and libgnatprj.
     Addresses: #844367.
 
- -- Matthias Klose <doko at debian.org>  Thu, 24 Nov 2016 15:42:23 +0100
+ -- Matthias Klose <doko at debian.org>  Fri, 25 Nov 2016 12:41:07 +0100
 
 gcc-7 (7-20161116-1) experimental; urgency=medium
 
diff --git a/debian/patches/pr78501.diff b/debian/patches/pr78501.diff
deleted file mode 100644
index 77fb61b..0000000
--- a/debian/patches/pr78501.diff
+++ /dev/null
@@ -1,34 +0,0 @@
-# DP: Proposed patch for PR middle-end/78501
-
---- a/src/gcc/tree-vrp.c	
-+++ b/src/gcc/tree-vrp.c	
-@@ -4028,15 +4028,20 @@ extract_range_basic (value_range *vr, gimple *stmt)
- 	  }
- 	  return;
- 	case CFN_BUILT_IN_STRLEN:
--	  {
--	    tree type = TREE_TYPE (gimple_call_lhs (stmt));
--	    tree max = vrp_val_max (ptrdiff_type_node);
--	    wide_int wmax = wi::to_wide (max, TYPE_PRECISION (TREE_TYPE (max)));
--	    tree range_min = build_zero_cst (type); 
--	    tree range_max = wide_int_to_tree (type, wmax - 1);
--	    set_value_range (vr, VR_RANGE, range_min, range_max, NULL);
--	  }
--	  return;
-+	  if (tree lhs = gimple_call_lhs (stmt))
-+	    if (ptrdiff_type_node
-+		&& (TYPE_PRECISION (ptrdiff_type_node)
-+		    == TYPE_PRECISION (TREE_TYPE (lhs))))
-+	      {
-+		tree type = TREE_TYPE (lhs);
-+		tree max = vrp_val_max (ptrdiff_type_node);
-+		wide_int wmax = wi::to_wide (max, TYPE_PRECISION (TREE_TYPE (max)));
-+		tree range_min = build_zero_cst (type);
-+		tree range_max = wide_int_to_tree (type, wmax - 1);
-+		set_value_range (vr, VR_RANGE, range_min, range_max, NULL);
-+		return;
-+	      }
-+	  break;
- 	default:
- 	  break;
- 	}
diff --git a/debian/rules.patch b/debian/rules.patch
index 8677613..b062dd4 100644
--- a/debian/rules.patch
+++ b/debian/rules.patch
@@ -225,7 +225,6 @@ debian_patches += gcc-ice-apport
 debian_patches += skip-bootstrap-multilib
 debian_patches += libffi-ro-eh_frame_sect
 debian_patches += libffi-mips
-debian_patches += pr78501
 
 # sigaction on sparc changed between glibc 2.19 and 2.21
 ifeq (,$(filter 2.1%, $(shell dpkg-query -l libc-bin | awk '/^.i/ {print $$3}')))

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



More information about the Reproducible-commits mailing list