pa.c (pa_adjust_cost): Don't do cost adjustments on pa8000.
* pa.c (pa_adjust_cost): Don't do cost adjustments on pa8000. (pa_reorg): Don't call pa_combine_instructions on pa8000. From-SVN: r26043
This commit is contained in:
parent
0a76126bfe
commit
86001391bb
@ -1,3 +1,8 @@
|
||||
Sun Mar 28 16:09:01 1999 "Jerry Quinn" <jquinn@nortelnetworks.com>
|
||||
|
||||
* pa.c (pa_adjust_cost): Don't do cost adjustments on pa8000.
|
||||
(pa_reorg): Don't call pa_combine_instructions on pa8000.
|
||||
|
||||
Sun Mar 28 15:27:26 1999 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* reload1.c (reload): Remove accidental code duplication.
|
||||
|
@ -3315,6 +3315,10 @@ pa_adjust_cost (insn, link, dep_insn, cost)
|
||||
{
|
||||
enum attr_type attr_type;
|
||||
|
||||
/* Don't adjust costs for a pa8000 chip. */
|
||||
if (pa_cpu >= PROCESSOR_8000)
|
||||
return cost;
|
||||
|
||||
if (! recog_memoized (insn))
|
||||
return 0;
|
||||
|
||||
@ -6030,7 +6034,9 @@ pa_reorg (insns)
|
||||
|
||||
remove_useless_addtr_insns (insns, 1);
|
||||
|
||||
pa_combine_instructions (get_insns ());
|
||||
if (pa_cpu < PROCESSOR_8000)
|
||||
pa_combine_instructions (get_insns ());
|
||||
|
||||
|
||||
/* This is fairly cheap, so always run it if optimizing. */
|
||||
if (optimize > 0 && !TARGET_BIG_SWITCH)
|
||||
|
Loading…
Reference in New Issue
Block a user