diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-10 11:41:58 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-10 11:41:58 +0000 |
commit | b51e5b4f6e503a720c70843858752561a7d9d03a (patch) | |
tree | 66a00be02f4c29813812752b76dddd1b0a7af3b1 /sim | |
parent | e218c1be05d120ab0a82b7826bc6d312779fc7e8 (diff) | |
download | gdb-b51e5b4f6e503a720c70843858752561a7d9d03a.zip gdb-b51e5b4f6e503a720c70843858752561a7d9d03a.tar.gz gdb-b51e5b4f6e503a720c70843858752561a7d9d03a.tar.bz2 |
If --enable-sim-inline is not specified, default to DEFAULT_INLINE=1, not 2.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/ppc/ChangeLog | 7 | ||||
-rwxr-xr-x | sim/ppc/configure | 2 | ||||
-rw-r--r-- | sim/ppc/configure.in | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index e6ed599..1447655 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,10 @@ +Fri Nov 10 06:39:46 1995 Michael Meissner <meissner@tiktok.cygnus.com> + + * 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 <meissner@tiktok.cygnus.com> * configure.in: If --silent, don't output information messages. diff --git a/sim/ppc/configure b/sim/ppc/configure index 9376a73..841c6a3 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 165c162..470c8c4 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 |