From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30657 invoked by alias); 10 Feb 2010 21:00:40 -0000 Received: (qmail 30647 invoked by uid 22791); 10 Feb 2010 21:00:39 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO glazunov.sibelius.xs4all.nl) (83.163.83.176) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 10 Feb 2010 21:00:35 +0000 Received: from glazunov.sibelius.xs4all.nl (kettenis@localhost [127.0.0.1]) by glazunov.sibelius.xs4all.nl (8.14.3/8.14.3) with ESMTP id o1AL0TQT007643; Wed, 10 Feb 2010 22:00:29 +0100 (CET) Received: (from kettenis@localhost) by glazunov.sibelius.xs4all.nl (8.14.3/8.14.3/Submit) id o1AL0RRT027674; Wed, 10 Feb 2010 22:00:27 +0100 (CET) Date: Wed, 10 Feb 2010 21:00:00 -0000 Message-Id: <201002102100.o1AL0RRT027674@glazunov.sibelius.xs4all.nl> From: Mark Kettenis To: hjl.tools@gmail.com CC: gdb-patches@sourceware.org In-reply-to: <20100210000116.GA23504@lucon.org> (hongjiu.lu@intel.com) Subject: Re: PATCH: PR gdb/11265: "infor reg sse" doesn't work on Linux/x86-64 References: <20100210000116.GA23504@lucon.org> 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 X-SW-Source: 2010-02/txt/msg00276.txt.bz2 > Date: Tue, 9 Feb 2010 16:01:16 -0800 > From: "H.J. Lu" > > Linux/x86-64 overides i386_register_reggroup_p with > amd64_linux_register_reggroup_p, which calls > default_register_reggroup_p. It makes Linux/x86-64 different from > other x86-64 targets where "infor reg sse" works. This patch makes > "infor reg sse" to work on Linux/x86-64 like other x86-64 targets. OK > to install? This is ok. > 2010-02-09 H.J. Lu > > PR gdb/11265 > * amd64-linux-tdep.c (amd64_linux_register_reggroup_p): Call > i386_register_reggroup_p instead of default_register_reggroup_p.