From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27195 invoked by alias); 14 Jan 2016 14:57:16 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 27185 invoked by uid 89); 14 Jan 2016 14:57:16 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mail-pf0-f173.google.com Received: from mail-pf0-f173.google.com (HELO mail-pf0-f173.google.com) (209.85.192.173) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 14 Jan 2016 14:57:15 +0000 Received: by mail-pf0-f173.google.com with SMTP id n128so100928881pfn.3 for ; Thu, 14 Jan 2016 06:57:15 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-type :content-transfer-encoding; bh=RPTrmQRZBMNpLTTp1FP3KY+RbQDZtA/v+Lu8RMQhUTY=; b=VG9GFg0VimOnK/0vYh8tD1bXJh80Cem9h5P6yI6WaYMoLJ/UKk3UQakCNhF6iM+wxM UTS7HGnT7n7TMpL3AZM6V4elB9hoojmdUMOW4kduVIlLbLIz+v/sRfy2ThJHISSaIZef mxBmMvr6kEJKfM0z5O0xvULk3+SK2RFVkH/nUHPJWyHV4o1GRlwU/SYpLqwK3mvJnNCs VDEZ2Hau0EJ92Azh73H/owYZDI3bv98Ev8XuPB1GJgDX3tCCFiaKzr9kYJKO5nzm2jAw JGtqL4lujM+tICE4We18r195gwwBb5AzVK2TzPY6BRJKviGYjpXf6myjGWr51x38YOIa PpjA== X-Gm-Message-State: ALoCoQmf770Mc9dZCLjQhUuUfUuWBeIwaCowLikBYMW5cjYCN42x2AlZIf6LP8ZflyImKUBWRS62O1UNG+z1ALnFiy60WXnhDg== X-Received: by 10.98.71.3 with SMTP id u3mr6459255pfa.111.1452783433564; Thu, 14 Jan 2016 06:57:13 -0800 (PST) Received: from E107787-LIN (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id pu3sm8387520pac.9.2016.01.14.06.57.11 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Thu, 14 Jan 2016 06:57:12 -0800 (PST) From: Yao Qi To: Yao Qi Cc: gdb-patches@sourceware.org Subject: Re: [PATCH] [ARM] Remove field syscall_next_pc in struct gdbarch_tdep References: <1452704004-6821-1-git-send-email-yao.qi@linaro.org> Date: Thu, 14 Jan 2016 14:57:00 -0000 In-Reply-To: <1452704004-6821-1-git-send-email-yao.qi@linaro.org> (Yao Qi's message of "Wed, 13 Jan 2016 16:53:24 +0000") Message-ID: <86wprctdj5.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00299.txt.bz2 Yao Qi writes: > gdb: > > 2016-01-13 Yao Qi > > * arm-linux-tdep.c (arm_linux_get_next_pcs_syscall_next_pc): > Declare. > (arm_linux_get_next_pcs_ops): Install > arm_linux_get_next_pcs_syscall_next_pc. > (arm_linux_syscall_next_pc): Change to ... > (arm_linux_get_next_pcs_syscall_next_pc): ... it. > (arm_linux_init_abi): Don't set tdep->syscall_next_pc. > * arm-tdep.c (arm_get_next_pcs_syscall_next_pc): Declare. > (arm_get_next_pcs_syscall_next_pc): Make it static. Don't > call tdep->syscall_next_pc. > * arm-tdep.h (struct gdbarch_tdep) : Remove. > (arm_get_next_pcs_syscall_next_pc): Remove. Patch is pushed in. --=20 Yao (=E9=BD=90=E5=B0=A7)