diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-01-20 19:26:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-01-20 19:26:50 +0000 |
commit | 67f026393e4e682c7ef9df65c610a276f723af55 (patch) | |
tree | b1c7ebbaf042a5464b695e886a60d14a0afbb9ff /gdb/remote-sim.c | |
parent | 0ca2e73be6c5e9968701e71b00828d905d526bc8 (diff) | |
download | gdb-67f026393e4e682c7ef9df65c610a276f723af55.tar.gz |
Assume TARGET_BYTE_ORDER_SELECTABLE{,_P} is always true.
Diffstat (limited to 'gdb/remote-sim.c')
-rw-r--r-- | gdb/remote-sim.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index dbae403f8dc..1d037c8fa79 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -474,8 +474,7 @@ gdbsim_open (char *args, int from_tty) strcpy (arg_buf, "gdbsim"); /* 7 */ /* Specify the byte order for the target when it is both selectable and explicitly specified by the user (not auto detected). */ - if (TARGET_BYTE_ORDER_SELECTABLE_P - && !TARGET_BYTE_ORDER_AUTO) + if (!TARGET_BYTE_ORDER_AUTO) { switch (TARGET_BYTE_ORDER) { |