From 8c560c809f3f5583eb8a8104d8c052206a88a739 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Sat, 7 Jun 2003 15:23:09 +0200 Subject: [PATCH] Makefile.in (stageprofile_build): Kill redundant target. * Makefile.in (stageprofile_build): Kill redundant target. * i386.c (mdep_reorg): Don't pad jumps for Athlon. From-SVN: r67586 --- gcc/ChangeLog | 5 +++++ gcc/Makefile.in | 8 -------- gcc/config/i386/i386.c | 3 ++- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e449a61ca6a..77c48b44c3f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sat Jun 7 15:20:01 CEST 2003 Jan Hubicka + + * Makefile.in (stageprofile_build): Kill redundant target. + * i386.c (mdep_reorg): Don't pad jumps for Athlon. + 2003-06-07 Andreas Jaeger * doc/tm.texi (Costs): Remove DONT_REDUCE_ADDR documentation. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c92a4c7356c..ba8531c22fb 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3548,14 +3548,6 @@ stagefeedback_copy: stagefeedback_build $(STAMP) stagefeedback_copy echo stagefeedback2_build > stage_last -stageprofile_build: stage1_copy - $(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" BUILD_CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \ - STAGE_PREFIX=stage1/ \ - $(POSTSTAGE1_FLAGS_TO_PASS) \ - $(STAGEPROFILE_FLAGS_TO_PASS) - $(STAMP) stageprofile_build - echo stageprofile_build > stage_last - # For bootstrap4: stage3_copy: stage3_build $(MAKE) stage3 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index f36c99ca200..0efbcba1e3c 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -15752,7 +15752,8 @@ ix86_reorg () delete_insn (ret); } } - k8_avoid_jump_misspredicts (); + if (TARGET_K8) + k8_avoid_jump_misspredicts (); } /* Return nonzero when QImode register that must be represented via REX prefix -- 2.30.2