From: Michael Meissner Date: Fri, 10 Nov 1995 11:41:58 +0000 (+0000) Subject: If --enable-sim-inline is not specified, default to DEFAULT_INLINE=1, not 2. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b51e5b4f6e503a720c70843858752561a7d9d03a;p=binutils-gdb.git If --enable-sim-inline is not specified, default to DEFAULT_INLINE=1, not 2. --- diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index e6ed599b343..1447655ffab 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,10 @@ +Fri Nov 10 06:39:46 1995 Michael Meissner + + * configure.in (--enable-sim-inline): If gcc is found and + --enable-sim-inline is not specified, defaine DEFAULT_INLINE to 1, + not 2. + * configure: Regenerate. + Thu Nov 9 12:22:15 1995 Michael Meissner * configure.in: If --silent, don't output information messages. diff --git a/sim/ppc/configure b/sim/ppc/configure index 9376a73c85c..841c6a3fda4 100755 --- a/sim/ppc/configure +++ b/sim/ppc/configure @@ -600,7 +600,7 @@ if test x"$silent" != x"yes" && test x"$sim_inline" != x""; then fi else if test x"$GCC" != ""; then - sim_inline="-DDEFAULT_INLINE=2" + sim_inline="-DDEFAULT_INLINE=1" if test x"$silent" != x"yes"; then echo "Setting inline flags = $sim_inline" 6>&1 fi diff --git a/sim/ppc/configure.in b/sim/ppc/configure.in index 165c16230bd..470c8c48749 100644 --- a/sim/ppc/configure.in +++ b/sim/ppc/configure.in @@ -118,7 +118,7 @@ esac if test x"$silent" != x"yes" && test x"$sim_inline" != x""; then echo "Setting inline flags = $sim_inline" 6>&1 fi],[if test x"$GCC" != ""; then - sim_inline="-DDEFAULT_INLINE=2" + sim_inline="-DDEFAULT_INLINE=1" if test x"$silent" != x"yes"; then echo "Setting inline flags = $sim_inline" 6>&1 fi