From: Hans-Peter Nilsson <hans-peter.nilsson@axis.com>
To: cagney@gnu.org
Cc: hans-peter.nilsson@axis.com, gdb-patches@gcc.gnu.org
Subject: Re: [RFA:] sim-config.c: When having a bfd, don't just check bfd_little_endian
Date: Tue, 16 Nov 2004 07:19:00 -0000 [thread overview]
Message-ID: <200411160719.iAG7JeQe002701@ignucius.se.axis.com> (raw)
In-Reply-To: <41922FBC.7020309@gnu.org> (message from Andrew Cagney on Wed, 10 Nov 2004 10:11:56 -0500)
> Date: Wed, 10 Nov 2004 10:11:56 -0500
> From: Andrew Cagney <cagney@gnu.org>
> > Index: sim-config.c
> > ===================================================================
> > RCS file: /cvs/src/src/sim/common/sim-config.c,v
> > retrieving revision 1.2
> > diff -c -p -r1.2 sim-config.c
> > *** sim-config.c 23 Nov 2002 01:12:05 -0000 1.2
> > --- sim-config.c 9 Nov 2004 19:41:07 -0000
> > *************** sim_config (SIM_DESC sd)
> > *** 146,152 ****
> > SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
> >
> > /* extract all relevant information */
> > ! if (STATE_PROG_BFD (sd) == NULL)
> > prefered_target_byte_order = 0;
> > else
> > prefered_target_byte_order = (bfd_little_endian(STATE_PROG_BFD (sd))
> > --- 146,156 ----
> > SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
> >
> > /* extract all relevant information */
> > ! if (STATE_PROG_BFD (sd) == NULL
> > ! /* If we have a binary input file (presumably with specified
> > ! "--architecture"), it'll have no endianness. */
> > ! || (!bfd_little_endian (STATE_PROG_BFD (sd))
> > ! && !bfd_big_endian (STATE_PROG_BFD (sd))))
>
> Yes, although this three way case better expressed using a switch.
Not one I see, not without looking at bfd private data
abfd->xvec->byteorder or introducing a multi-valued accessor for
the bfd endian data or expressing it awkwardly along the lines of:
switch (2 * (bfd_little_endian (STATE_PROG_BFD (sd) != false))
+ (bfd_big_endian (STATE_PROG_BFD (sd) != false)))
...
> Change it before committing if you care.
Since you made it optional I committed as-is; I didn't see an
obvious and simple way to better express it as a switch.
brgds, H-P
next prev parent reply other threads:[~2004-11-16 7:19 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-11-09 22:02 Hans-Peter Nilsson
2004-11-10 15:13 ` Andrew Cagney
2004-11-16 7:19 ` Hans-Peter Nilsson [this message]
2004-11-16 16:16 ` Andrew Cagney
2004-11-10 19:01 Paul Schlie
2004-11-10 19:12 ` Paul Schlie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200411160719.iAG7JeQe002701@ignucius.se.axis.com \
--to=hans-peter.nilsson@axis.com \
--cc=cagney@gnu.org \
--cc=gdb-patches@gcc.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox