From 8e26d677a240d3b495b7c565006d75646a15ed53 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 30 Dec 2015 23:47:35 -0500 Subject: [PATCH] sim: m68hc11: fix default endian The previous commit here set the default to little instead of big. A typo lost when reviewing the different targets in parallel. --- sim/m68hc11/ChangeLog | 5 +++++ sim/m68hc11/configure | 2 +- sim/m68hc11/configure.ac | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index ee8263e5e5..1df68108a6 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,8 @@ +2015-12-30 Mike Frysinger + + * configure.ac: Change LITTLE_ENDIAN to BIG_ENDIAN. + * configure: Regenerate. + 2015-12-30 Mike Frysinger * imterp.c (sim_open): Delete current_alignment and diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index d7926d66ed..3a277d1389 100755 --- a/sim/m68hc11/configure +++ b/sim/m68hc11/configure @@ -12955,7 +12955,7 @@ fi fi -wire_endian="LITTLE_ENDIAN" +wire_endian="BIG_ENDIAN" default_endian="" # Check whether --enable-sim-endian was given. if test "${enable_sim_endian+set}" = set; then : diff --git a/sim/m68hc11/configure.ac b/sim/m68hc11/configure.ac index a368b0c4e2..cbfe9e8070 100644 --- a/sim/m68hc11/configure.ac +++ b/sim/m68hc11/configure.ac @@ -7,7 +7,7 @@ SIM_AC_COMMON dnl Options available in this module SIM_AC_OPTION_INLINE() -SIM_AC_OPTION_ENDIAN(LITTLE_ENDIAN) +SIM_AC_OPTION_ENDIAN(BIG_ENDIAN) SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT) SIM_AC_OPTION_HOSTENDIAN SIM_AC_OPTION_WARNINGS -- 2.34.1