From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 73B07138334 for ; Wed, 12 Jun 2019 21:31:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 985E2E08F4; Wed, 12 Jun 2019 21:30:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FC88E08F4 for ; Wed, 12 Jun 2019 21:30:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37CA2345FA0 for ; Wed, 12 Jun 2019 21:30:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AE375BD for ; Wed, 12 Jun 2019 21:30:56 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1560375032.499dc858cc4152f30ac4e2e6aa43a38afd6c5548.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 3.4.6/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 3.4.6/gentoo/93_all_gperf-inline.patch 3.4.6/gentoo/README.history X-VCS-Directories: 3.4.6/gentoo/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 499dc858cc4152f30ac4e2e6aa43a38afd6c5548 X-VCS-Branch: master Date: Wed, 12 Jun 2019 21:30:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 270189b8-2221-4f6f-bfee-dbf8ce04f022 X-Archives-Hash: fd092cff75bfb5a49bd66ff18e25016f commit: 499dc858cc4152f30ac4e2e6aa43a38afd6c5548 Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Jun 12 21:30:32 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Jun 12 21:30:32 2019 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=499dc858 3.4.6: backport gperf inlining fix Signed-off-by: Sergei Trofimovich gentoo.org> 3.4.6/gentoo/93_all_gperf-inline.patch | 22 ++++++++++++++++++++++ 3.4.6/gentoo/README.history | 3 +++ 2 files changed, 25 insertions(+) diff --git a/3.4.6/gentoo/93_all_gperf-inline.patch b/3.4.6/gentoo/93_all_gperf-inline.patch new file mode 100644 index 0000000..c8ed142 --- /dev/null +++ b/3.4.6/gentoo/93_all_gperf-inline.patch @@ -0,0 +1,22 @@ +--- a/gcc/java/keyword.gperf ++++ b/gcc/java/keyword.gperf +@@ -34,7 +34,7 @@ static unsigned int hash (const char *, unsigned int); + #ifdef __GNUC__ + __inline + #endif +-const struct java_keyword *java_keyword (const char *, unsigned int); ++static const struct java_keyword *java_keyword (const char *, unsigned int); + %% + abstract, ABSTRACT_TK + default, DEFAULT_TK +--- a/gcc/java/keyword.h ++++ b/gcc/java/keyword.h +@@ -34,7 +34,7 @@ static unsigned int hash (const char *, unsigned int); + #ifdef __GNUC__ + __inline + #endif +-const struct java_keyword *java_keyword (const char *, unsigned int); ++static const struct java_keyword *java_keyword (const char *, unsigned int); + + #define TOTAL_KEYWORDS 52 + #define MIN_WORD_LENGTH 2 diff --git a/3.4.6/gentoo/README.history b/3.4.6/gentoo/README.history index 549063a..d7969e2 100644 --- a/3.4.6/gentoo/README.history +++ b/3.4.6/gentoo/README.history @@ -1,3 +1,6 @@ +2 TODO + + 93_all_gperf-inline.patch + 1.9 1 Jun 2019 - 00_all_gcc-trampolinewarn.patch + 91_all_ucontext-to-ucontext_t.patch