* 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
+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.
{
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;
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)