(XCFLAGS): Disable native assembler's jump optimization for expr.o and
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 26 Oct 1996 19:24:53 +0000 (15:24 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 26 Oct 1996 19:24:53 +0000 (15:24 -0400)
cp/decl.o.

From-SVN: r13039

gcc/config/m68k/x-mot3300

index 44d7e06fe9af69ff4b1c9af0bd23b521f8737f20..634540ff6756929a46f9c37edb11d840d0e6af1d 100644 (file)
@@ -9,4 +9,6 @@ ALLOCA=alloca.o
 #   ld: relocation entry found for non-relocatable symbol in combine.o
 # and the produced "cc1" fails with SIGSEGV
 # Another possible fix would be to split combine.c.
-XCFLAGS=`if [ x$@ = xcombine.o ]; then echo -Wa,-j; fi`
+# 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`