sim: ppc: use common sim-assert setting
authorMike Frysinger <vapier@gentoo.org>
Wed, 16 Jun 2021 01:17:55 +0000 (21:17 -0400)
committerMike Frysinger <vapier@gentoo.org>
Wed, 16 Jun 2021 05:24:20 +0000 (01:24 -0400)
The common sim code already sets this up for us, so no need to
duplicate the logic.

sim/ppc/ChangeLog
sim/ppc/config.in
sim/ppc/configure
sim/ppc/configure.ac

index 3ef5b228e46866b204d35a110b8e41095e937c92..c166e4491025c84e1369abaa3edd153a6a1f875a 100644 (file)
@@ -1,3 +1,8 @@
+2021-06-16  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure.ac: Delete sim-assert logic.
+       * config.in, configure: Regenerate.
+
 2021-06-16  Mike Frysinger  <vapier@gentoo.org>
 
        * altivec.igen: Change BIG_ENDIAN to BFD_ENDIAN_BIG.
index c6182ae0e8689a6b5121b10ccae51180b3adbd1f..1067e029790e43bb2834344cd071806ef8920631 100644 (file)
@@ -71,6 +71,3 @@
    Windows, we use the Windows API when building for MinGW, but the POSIX API
    when building for Cygwin. */
 #undef USE_WIN32API
-
-/* Sim assert settings */
-#undef WITH_ASSERT
index 10903a0f13ce88d259f4157f5aa20fe6e6c2307d..f81d83a9f473d0f7f1dd664fa0d756aae58fd639 100755 (executable)
@@ -740,7 +740,6 @@ SHELL'
 ac_subst_files=''
 ac_user_opts='
 enable_option_checking
-enable_sim_assert
 enable_sim_bitsize
 enable_sim_config
 enable_sim_decode_mechanism
@@ -1396,7 +1395,6 @@ Optional Features:
   --disable-option-checking  ignore unrecognized --enable/--with options
   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-  --enable-sim-assert                  Specify whether to perform random assertions.
   --enable-sim-bitsize=n               Specify target bitsize (32 or 64).
   --enable-sim-config=file             Override default config file
   --enable-sim-decode-mechanism=which          Specify the instruction decode mechanism.
@@ -3114,26 +3112,6 @@ $as_echo "$LINGUAS" >&6; }
 fi
 
 
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable sim asserts" >&5
-$as_echo_n "checking whether to enable sim asserts... " >&6; }
-sim_assert="1"
-# Check whether --enable-sim-assert was given.
-if test "${enable_sim_assert+set}" = set; then :
-  enableval=$enable_sim_assert; case "${enableval}" in
-  yes) sim_assert="1";;
-  no)  sim_assert="0";;
-  *)   as_fn_error $? "--enable-sim-assert does not take a value" "$LINENO" 5;;
-esac
-fi
-
-cat >>confdefs.h <<_ACEOF
-#define WITH_ASSERT $sim_assert
-_ACEOF
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $sim_assert" >&5
-$as_echo "$sim_assert" >&6; }
-
-
 # Check whether --enable-sim-bitsize was given.
 if test "${enable_sim_bitsize+set}" = set; then :
   enableval=$enable_sim_bitsize; case "${enableval}" in
index 376c3ce07fa4ba9853209edc6e70a8f26927dd68..ed59e05c7869e27b055b30e0e9625afdb2a4fc63 100644 (file)
@@ -19,19 +19,6 @@ ALL_LINGUAS=
 ZW_GNU_GETTEXT_SISTER_DIR(../../intl)
 
 
-AC_MSG_CHECKING([whether to enable sim asserts])
-sim_assert="1"
-AC_ARG_ENABLE(sim-assert,
-[  --enable-sim-assert                 Specify whether to perform random assertions.],
-[case "${enableval}" in
-  yes) sim_assert="1";;
-  no)  sim_assert="0";;
-  *)   AC_MSG_ERROR([--enable-sim-assert does not take a value]);;
-esac])dnl
-AC_DEFINE_UNQUOTED([WITH_ASSERT], [$sim_assert], [Sim assert settings])
-AC_MSG_RESULT($sim_assert)
-
-
 AC_ARG_ENABLE(sim-bitsize,
 [  --enable-sim-bitsize=n              Specify target bitsize (32 or 64).],
 [case "${enableval}" in
This page took 0.033955 seconds and 4 git commands to generate.