diff options
author | Scott Bambrough <scottb@netwinder.org> | 2000-04-07 22:26:11 +0000 |
---|---|---|
committer | Scott Bambrough <scottb@netwinder.org> | 2000-04-07 22:26:11 +0000 |
commit | 134e61c4a77c65329c049cb790166a400f7b9fda (patch) | |
tree | 40a8f0c59e7aad961d9b968dbc72af838cdc95ca /gdb/config/arm/tm-wince.h | |
parent | 03e0fb3a47c004dbe49bfc48cbd458c284c83292 (diff) | |
download | gdb-134e61c4a77c65329c049cb790166a400f7b9fda.zip gdb-134e61c4a77c65329c049cb790166a400f7b9fda.tar.gz gdb-134e61c4a77c65329c049cb790166a400f7b9fda.tar.bz2 |
2000-04-07 Scott Bambrough <scottb@netwinder.org>
* ChangeLog: Correct date on last entry.
* arm-linux-tdep.c (arm_linux_push_arguments): New function.
* config/arm/tm-linux: Redefined PUSH_ARGUMENTS for Linux.
* config/arm/tm-embed: Fix build warning from redefinition of
LOWEST_PC.
* config/arm/tm-arm.h: Remove TARGET_BYTE_ORDER_SELECTABLE.
* config/arm/tm-wince.h: Remove TARGET_BYTE_ORDER_SELECTABLE and
TARGET_BYTE_ORDER. Add TARGET_BYTE_ORDER_SELECTABLE_P to
override default in tm-arm.h. Use default target byte order
from tm-arm.h.
Diffstat (limited to 'gdb/config/arm/tm-wince.h')
-rw-r--r-- | gdb/config/arm/tm-wince.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/config/arm/tm-wince.h b/gdb/config/arm/tm-wince.h index 9b46135..0de5fbe 100644 --- a/gdb/config/arm/tm-wince.h +++ b/gdb/config/arm/tm-wince.h @@ -31,7 +31,8 @@ void wince_software_single_step (unsigned int, int); -#undef TARGET_BYTE_ORDER_SELECTABLE -#define TARGET_BYTE_ORDER LITTLE_ENDIAN +/* Target byte order is little endian and not selectable on WinCE. */ +#undef TARGET_BYTE_ORDER_SELECTABLE_P +#define TARGET_BYTE_ORDER_SELECTABLE_P 0 #endif /* TM_WINCE_H */ |