From patchwork Mon Jun 22 11:03:37 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 7285 Received: (qmail 110072 invoked by alias); 22 Jun 2015 11:03:50 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 109957 invoked by uid 89); 22 Jun 2015 11:03:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f45.google.com Received: from mail-pa0-f45.google.com (HELO mail-pa0-f45.google.com) (209.85.220.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 22 Jun 2015 11:03:49 +0000 Received: by pacyo7 with SMTP id yo7so28717700pac.2 for ; Mon, 22 Jun 2015 04:03:48 -0700 (PDT) X-Received: by 10.68.218.103 with SMTP id pf7mr57552573pbc.32.1434971027977; Mon, 22 Jun 2015 04:03:47 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by mx.google.com with ESMTPSA id ql9sm19461428pbc.65.2015.06.22.04.03.46 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 22 Jun 2015 04:03:47 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH 2/2] Add aarch64-linux in supports_get_siginfo_type Date: Mon, 22 Jun 2015 12:03:37 +0100 Message-Id: <1434971017-22494-2-git-send-email-yao.qi@linaro.org> In-Reply-To: <1434971017-22494-1-git-send-email-yao.qi@linaro.org> References: <1434971017-22494-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes gdbarch method get_siginfo_type is implemented on aaarch64-linux, so supports_get_siginfo_type should return 1 on aaarch64-linux. gdb/testsuite: 2015-06-22 Yao Qi * lib/gdb.exp (supports_get_siginfo_type): Add aarch64-linux. --- gdb/testsuite/lib/gdb.exp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index d3ed56f..47221cb 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -2002,7 +2002,8 @@ gdb_caching_proc support_complex_tests { proc supports_get_siginfo_type {} { if { [istarget "i?86-*-linux*"] || [istarget "x86_64-*-linux*"] - || [istarget "arm*-*-linux*"] } { + || [istarget "arm*-*-linux*"] + || [istarget "aarch64*-*-linux*"] } { return 1 } else { return 0