From patchwork Wed Aug 21 14:43:32 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joern Rennecke X-Patchwork-Id: 268820 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 4834E2C00CA for ; Thu, 22 Aug 2013 00:44:20 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=qxw/HEeUxKDJr/C7 y/3IRx7Mzwhic98cKRK9BFGA4fuaeJv2I912dsTYnkD5DhjAPzReIT3y8eMZ6Dux P7bG1/86s8AB19/9DnAapM7pmoox/cM5NgAKKG5QOovxIZTfzfWj1/ljVX9jwngt CgUG7EdOECKqyIczuhxePuCOB48= 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 :message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding; s=default; bh=YzHGl9JsfnvrAO2Eez9bRm iNl4Q=; b=l5J1aaFkTcE0aee3PbBG/5iIkSFebTSRC2vxlixx0eJ+XhY0HhCnjW dQyYgP4CmAn0nlUNK9yNV1ExBCaeno0a944f34Caqu8elfP2IgfE+ObCo6z1/yie /NXSTLmxAEW0o7TxxlNwFjg+BNzQRemPYj7Vq6vkXrIO5G81voUwo= Received: (qmail 16625 invoked by alias); 21 Aug 2013 14:43:35 -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 16575 invoked by uid 89); 21 Aug 2013 14:43:35 -0000 X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_MED, RCVD_IN_HOSTKARMA_NO, RCVD_IN_HOSTKARMA_W autolearn=ham version=3.3.2 Received: from c62.cesmail.net (HELO c62.cesmail.net) (216.154.195.54) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 21 Aug 2013 14:43:34 +0000 Received: from unknown (HELO epsilon2) ([192.168.1.60]) by c62.cesmail.net with ESMTP; 21 Aug 2013 10:43:32 -0400 Received: from cust213-dsl91-135-11.idnet.net (cust213-dsl91-135-11.idnet.net [91.135.11.213]) by webmail.spamcop.net (Horde MIME library) with HTTP; Wed, 21 Aug 2013 10:43:32 -0400 Message-ID: <20130821104332.wgz8zqlgl8gs04gk-nzlynne@webmail.spamcop.net> Date: Wed, 21 Aug 2013 10:43:32 -0400 From: Joern Rennecke To: gcc-patches@gcc.gnu.org Subject: Committed: rename struct reg_equivs MIME-Version: 1.0 User-Agent: Internet Messaging Program (IMP) H3 (4.1.4) X-Virus-Found: No Having a C++ type with the same name as the variable reg_equivs causes trouble with gdb, so I renamed the struct. Bootstrapped on i686-pc-linux-gnu. Committed as obvious. 2013-08-21 Joern Rennecke * reload.h (struct reg_equivs): Rename to .. (struct reg_equivs_s): .. this. Index: reload.h =================================================================== --- reload.h (revision 201898) +++ reload.h (working copy) @@ -203,7 +203,7 @@ #define caller_save_initialized_p \ (this_target_reload->x_caller_save_initialized_p) /* Register equivalences. Indexed by register number. */ -typedef struct reg_equivs +typedef struct reg_equivs_s { /* The constant value to which pseudo reg N is equivalent, or zero if pseudo reg N is not equivalent to a constant.