Commit 7496c2b5 by Richard Kenner

(XCFLAGS): Disable native assembler's jump optimization for expr.o and

cp/decl.o.

From-SVN: r13039
parent 7a7233ff
...@@ -9,4 +9,6 @@ ALLOCA=alloca.o ...@@ -9,4 +9,6 @@ ALLOCA=alloca.o
# ld: relocation entry found for non-relocatable symbol in combine.o # ld: relocation entry found for non-relocatable symbol in combine.o
# and the produced "cc1" fails with SIGSEGV # and the produced "cc1" fails with SIGSEGV
# Another possible fix would be to split combine.c. # 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`
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment