From: Philippe De Muyter Date: Wed, 1 Oct 1997 07:41:57 +0000 (+0200) Subject: x-mot3300 (XCFLAGS): Disable as's long/short jump optimisation for f/expr.o and f... X-Git-Tag: releases/egcs-1.0.0~414 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cbdd5fc1654c2dbe18314178bb238f77088e1b5;p=thirdparty%2Fgcc.git x-mot3300 (XCFLAGS): Disable as's long/short jump optimisation for f/expr.o and f/stb.o. * config/m68k/x-mot3300 (XCFLAGS): Disable as's long/short jump optimisation for f/expr.o and f/stb.o. From-SVN: r15819 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3143cebdeb01..238920634f4f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed Oct 1 01:44:36 1997 Philippe De Muyter + + * m68k/x-mot3300 (XCFLAGS): Disable as's long/short jump + optimisation for f/expr.o and f/stb.o. + Tue Sep 30 23:48:57 1997 Jeffrey A Law (law@cygnus.com) * cse.c (this_insn_cc0_mode): Initialize. diff --git a/gcc/config/m68k/x-mot3300 b/gcc/config/m68k/x-mot3300 index 634540ff6756..3d7e3c315a94 100644 --- a/gcc/config/m68k/x-mot3300 +++ b/gcc/config/m68k/x-mot3300 @@ -11,4 +11,5 @@ ALLOCA=alloca.o # Another possible fix would be to split combine.c. # Since ss-961013, the same happens for expr.c compiled by gcc, but not by cc; # and for cp/decl.c; aren't those files too big ? -XCFLAGS=`case $@ in combine.o|expr.o|decl.o) echo -Wa,-j;;esac` +# With egcs-970910, this also happens for f/expr.o and f/stb.o +XCFLAGS=`case $@ in combine.o|expr.o|decl.o|f/expr.o|f/stb.o) echo -Wa,-j;;esac`