public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/gcc] rhel-f41-base: 4.9.1-1
Date: Mon, 29 Jun 2026 12:26:21 GMT	[thread overview]
Message-ID: <178273598134.1.6926744175509118168.rpms-gcc-c204df314335@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rhel-f41-base
Commit : c204df3143359ba634c7a971a175e2bbec260ffe
Author : Jakub Jelinek <jakub@redhat.com>
Date   : 2014-07-16T18:02:45+02:00
Stats  : +4/-78 in 2 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/c204df3143359ba634c7a971a175e2bbec260ffe?branch=rhel-f41-base

Log:
4.9.1-1

---
diff --git a/gcc.spec b/gcc.spec
index 59dc9b8..53716b3 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -196,9 +196,8 @@ Patch12: gcc49-no-add-needed.patch
 Patch14: gcc49-pr56493.patch
 Patch15: gcc49-color-auto.patch
 Patch16: gcc49-libgo-p224.patch
-Patch17: gcc49-pr61673.patch
-Patch18: gcc49-aarch64-async-unw-tables.patch
-Patch19: gcc49-aarch64-GNU_STACK.patch
+Patch17: gcc49-aarch64-async-unw-tables.patch
+Patch18: gcc49-aarch64-GNU_STACK.patch
 
 Patch1100: cloog-%{cloog_version}-ppc64le-config.patch
 
@@ -725,9 +724,8 @@ package or when debugging this package.
 %endif
 %patch16 -p0 -b .libgo-p224~
 rm -f libgo/go/crypto/elliptic/p224{,_test}.go
-%patch17 -p0 -b .pr61673~
-%patch18 -p0 -b .aarch64-async-unw-tables~
-%patch19 -p0 -b .aarch64-GNU_STACK~
+%patch17 -p0 -b .aarch64-async-unw-tables~
+%patch18 -p0 -b .aarch64-GNU_STACK~
 
 %if 0%{?_enable_debug_packages}
 cat > split-debuginfo.sh <<\EOF

diff --git a/gcc49-pr61673.patch b/gcc49-pr61673.patch
deleted file mode 100644
index 0b0c6f8..0000000
--- a/gcc49-pr61673.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-2014-07-02  Jakub Jelinek  <jakub@redhat.com>
-
-	PR rtl-optimization/61673
-	* combine.c (simplify_comparison): Test just mode's sign bit
-	in tmode rather than the sign bit and any bits above it.
-
-	* gcc.c-torture/execute/pr61673.c: New test.
-
---- gcc/combine.c.jj	2014-03-28 20:49:52.892077022 +0100
-+++ gcc/combine.c	2014-07-02 16:56:02.260456040 +0200
-@@ -11987,7 +11987,7 @@ simplify_comparison (enum rtx_code code,
- 		= (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (mode) - 1);
- 	      op0 = simplify_gen_binary (AND, tmode,
- 					 gen_lowpart (tmode, op0),
--					 gen_int_mode (sign, mode));
-+					 gen_int_mode (sign, tmode));
- 	      code = (code == LT) ? NE : EQ;
- 	      break;
- 	    }
---- gcc/testsuite/gcc.c-torture/execute/pr61673.c.jj	2014-07-02 17:17:01.398908630 +0200
-+++ gcc/testsuite/gcc.c-torture/execute/pr61673.c	2014-07-02 17:12:36.000000000 +0200
-@@ -0,0 +1,50 @@
-+/* PR rtl-optimization/61673 */
-+
-+char e;
-+
-+__attribute__((noinline, noclone)) void
-+bar (char x)
-+{
-+  if (x != 0x54 && x != (char) 0x87)
-+    __builtin_abort ();
-+}
-+
-+__attribute__((noinline, noclone)) void
-+foo (const char *x)
-+{
-+  char d = x[0];
-+  int c = d;
-+  if ((c >= 0 && c <= 0x7f) == 0)
-+    e = d;
-+  bar (d);
-+}
-+
-+__attribute__((noinline, noclone)) void
-+baz (const char *x)
-+{
-+  char d = x[0];
-+  int c = d;
-+  if ((c >= 0 && c <= 0x7f) == 0)
-+    e = d;
-+}
-+
-+int
-+main ()
-+{
-+  const char c[] = { 0x54, 0x87 };
-+  e = 0x21;
-+  foo (c);
-+  if (e != 0x21)
-+    __builtin_abort ();
-+  foo (c + 1);
-+  if (e != 0x87)
-+    __builtin_abort ();
-+  e = 0x21;
-+  baz (c);
-+  if (e != 0x21)
-+    __builtin_abort ();
-+  baz (c + 1);
-+  if (e != 0x87)
-+    __builtin_abort ();
-+  return 0;
-+}

             reply	other threads:[~2026-06-29 12:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-29 12:26 Jakub Jelinek [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-06-29 12:26 [rpms/gcc] rhel-f41-base: 4.9.1-1 Jakub Jelinek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178273598134.1.6926744175509118168.rpms-gcc-c204df314335@fedoraproject.org \
    --to=jakub@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox