From patchwork Tue Sep 1 13:55:32 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aldy Hernandez X-Patchwork-Id: 512854 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4EE5A1401E7 for ; Tue, 1 Sep 2015 23:55:43 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=XTGESziK; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to:cc :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=Wtobz6l6aZqREtCuYgIsQ+sDCBGLFeuw8SFFHYX6NbOPfZ71Qx OBj0FtSWmAql4Cf7FYV5Cl/g1RjS0vaLqTviKTEku7qDscqknj+4Sp9UscENkQuW CdLg5QviyLP05CpMgSukJBCjVd9HhuFW/u7XqTW8t3b+UpqCvM1swsEH8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to:cc :from:subject:message-id:date:mime-version:content-type; s= default; bh=T/fjMGhE/vgHteHr8R7lsdO+dp8=; b=XTGESziKXHxNnwedwN+h MvbJgqRXoIs6q88PuGhyN2QIvM57KMYeri2w95UtiSG75p3hKYBfdNEfkSeZM8Vv pHu0pFC7M0nhxpIrv6BV7gKVrmy1OXTsYZhcdYAu9BPFa9iPdZe7+5ChwWNt/VHz oY4XYrXXSNLh1U4FbKsnT5I= Received: (qmail 102878 invoked by alias); 1 Sep 2015 13:55:36 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 102867 invoked by uid 89); 1 Sep 2015 13:55:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.8 required=5.0 tests=AWL, BAYES_05, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 01 Sep 2015 13:55:35 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 11B4C8E3DE for ; Tue, 1 Sep 2015 13:55:34 +0000 (UTC) Received: from reynosa.quesejoda.com (vpn-56-188.rdu2.redhat.com [10.10.56.188]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t81DtXmS024132; Tue, 1 Sep 2015 09:55:33 -0400 To: Richard Henderson Cc: gcc-patches From: Aldy Hernandez Subject: [committed] taking transactional credits Message-ID: <55E5AE54.80809@redhat.com> Date: Tue, 1 Sep 2015 06:55:32 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 I've had too many sleepless nights caused by this code, not to warrant tattooing my name on it. If you don't like it, sue me. =) Aldy commit 7d92b913093c35cb6fb322d4dc9acb237cecabfe Author: Aldy Hernandez Date: Tue Sep 1 06:51:45 2015 -0700 + * trans-mem.c: Add contributed-by. + * trans-mem.h: Same. diff --git a/gcc/trans-mem.c b/gcc/trans-mem.c index 891e638..e7707ac 100644 --- a/gcc/trans-mem.c +++ b/gcc/trans-mem.c @@ -1,5 +1,7 @@ /* Passes for transactional memory support. Copyright (C) 2008-2015 Free Software Foundation, Inc. + Contributed by Richard Henderson + and Aldy Hernandez . This file is part of GCC. diff --git a/gcc/trans-mem.h b/gcc/trans-mem.h index f19b83c..585b22a 100644 --- a/gcc/trans-mem.h +++ b/gcc/trans-mem.h @@ -1,5 +1,7 @@ /* Miscellaneous transactional memory support definitions. Copyright (C) 2009-2015 Free Software Foundation, Inc. + Contributed by Richard Henderson + and Aldy Hernandez . This file is part of GCC.