From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 38790 invoked by alias); 30 Jul 2015 14:49:50 -0000 Mailing-List: contact gdb-testers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-testers-owner@sourceware.org Received: (qmail 38780 invoked by uid 89); 30 Jul 2015 14:49:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (176.31.208.32) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 30 Jul 2015 14:49:48 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] Don't use arm_regmap and arm_num_regs in arm_fill_gregset and arm_store_gregset From: sergiodj+buildbot@redhat.com To: gdb-testers@sourceware.org Message-Id: Date: Thu, 30 Jul 2015 14:49:00 -0000 X-SW-Source: 2015-q3/txt/msg04146.txt.bz2 *** TEST RESULTS FOR COMMIT deca266c89cf61c679f759a74bdf362960b0cc2c *** Author: Yao Qi Branch: master Commit: deca266c89cf61c679f759a74bdf362960b0cc2c Don't use arm_regmap and arm_num_regs in arm_fill_gregset and arm_store_gregset In order to align with arm-linux-nat.c counterparts, we don't use arm_num_regs and arm_regmap in functions arm_fill_gregset and arm_store_gregset. Instead, we use register numbers. With this patch applied, arm_fill_gregset and arm_store_gregset don't need arm_num_regs and arm_regmap, and they will be moved to a separate file shared for both arm and aarch64 in the following patch. gdb/gdbserver: 2015-07-30 Yao Qi * linux-arm-low.c: Include arch/arm.h. (arm_fill_gregset): Don't use arm_num_regs and arm_regmap. (arm_store_gregset): Likewise.