From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31437 invoked by alias); 16 Dec 2001 20:49:43 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 31416 invoked from network); 16 Dec 2001 20:49:41 -0000 Message-ID: <3C1D08E2.7000106@cygnus.com> Date: Sat, 13 Oct 2001 09:47:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.6) Gecko/20011207 X-Accept-Language: en-us MIME-Version: 1.0 To: insight@sources.redhat.com Subject: [patch] missed a LITTLE_ENDIAN -> BFD_ENDIAN_LITTLE Content-Type: multipart/mixed; boundary="------------050601080108090807020906" X-SW-Source: 2001-q4/txt/msg00121.txt.bz2 This is a multi-part message in MIME format. --------------050601080108090807020906 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 30 I missed this one :-( Andrew --------------050601080108090807020906 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 811 2001-12-16 Andrew Cagney * generic/gdbtk-cmds.c (hex2bin): Replace LITTLE_ENDIAN with BFD_ENDIAN_LITTLE. Index: generic/gdbtk-cmds.c =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-cmds.c,v retrieving revision 1.44 diff -p -r1.44 gdbtk-cmds.c *** gdbtk-cmds.c 2001/11/19 18:43:18 1.44 --- gdbtk-cmds.c 2001/12/16 20:47:21 *************** hex2bin (const char *hex, char *bin, int *** 2477,2483 **** int incr = 2; ! if (TARGET_BYTE_ORDER == LITTLE_ENDIAN) { /* need to read string in reverse */ hex += count - 2; --- 2477,2483 ---- int incr = 2; ! if (TARGET_BYTE_ORDER == BFD_ENDIAN_LITTLE) { /* need to read string in reverse */ hex += count - 2; --------------050601080108090807020906-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: insight@sources.redhat.com Subject: [patch] missed a LITTLE_ENDIAN -> BFD_ENDIAN_LITTLE Date: Sun, 16 Dec 2001 12:49:00 -0000 Message-ID: <3C1D08E2.7000106@cygnus.com> X-SW-Source: 2001-q4/msg00422.html Message-ID: <20011216124900.5VPqzIMXn5wIsk9nocTVhGyzo9QnxlKUj0fROK4GkzI@z> I missed this one :-( Andrew