sim: frv: flip trapdump default back to off
authorMike Frysinger <vapier@gentoo.org>
Wed, 10 Nov 2021 10:15:33 +0000 (05:15 -0500)
committerMike Frysinger <vapier@gentoo.org>
Wed, 10 Nov 2021 10:19:03 +0000 (05:19 -0500)
When I refactored this by scoping it to sim-frv-xxx in commit
e7954ef5e5ed90fb7d28c013518f4c2e6bcd20a1 ("sim: frv: scope the
unique configure flag"), I changed the default from off to on.
While the feature is nice for developers, it breaks a bunch of
tests which aren't expecting this extra output.  So flip it back
to off by default.

sim/configure
sim/frv/acinclude.m4

index 3da6fce3580c9d596d75ae1982d6fac1973417be..3cd19e0648ae465e48345f634077d5a991e4f276 100755 (executable)
@@ -15317,7 +15317,7 @@ yes|no) ;;
 esac
 fi
 
-if test "x${enable_sim_frv_trapdump}" != xno; then
+if test "x${enable_sim_frv_trapdump}" = xyes; then
   SIM_FRV_TRAPDUMP_FLAGS="-DTRAPDUMP=1"
   { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 $as_echo "yes" >&6; }
index 797bcd6c60f725b24d154dee32b9f06eec217a37..75c27a89d04aeda640512ac23b512d7a36ff3342 100644 (file)
@@ -24,7 +24,7 @@ AC_ARG_ENABLE(sim-frv-trapdump,
 yes|no) ;;
 *) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-trapdump");;
 esac])
-if test "x${enable_sim_frv_trapdump}" != xno; then
+if test "x${enable_sim_frv_trapdump}" = xyes; then
   SIM_FRV_TRAPDUMP_FLAGS="-DTRAPDUMP=1"
   AC_MSG_RESULT([yes])
 else