Commit 43369be5 by Jeff Law

Put back changes lost in the last update of pa.h

From-SVN: r2461
parent d2a94ec0
...@@ -1228,7 +1228,7 @@ extern union tree_node *current_function_decl; ...@@ -1228,7 +1228,7 @@ extern union tree_node *current_function_decl;
if (memory_address_p (MODE, X)) \ if (memory_address_p (MODE, X)) \
goto WIN; \ goto WIN; \
if (flag_pic) (X) = legitimize_pic_address (X, MODE, gen_reg_rtx (Pmode));\ if (flag_pic) (X) = legitimize_pic_address (X, MODE, gen_reg_rtx (Pmode));\
else if ((GET_CODE (X) == SYMBOL_REF & read_only_operand (X)) \ else if ((GET_CODE (X) == SYMBOL_REF && read_only_operand (X)) \
|| GET_CODE (X) == LABEL_REF) \ || GET_CODE (X) == LABEL_REF) \
(X) = gen_rtx (LO_SUM, Pmode, \ (X) = gen_rtx (LO_SUM, Pmode, \
copy_to_mode_reg (Pmode, gen_rtx (HIGH, Pmode, X)), X); \ copy_to_mode_reg (Pmode, gen_rtx (HIGH, Pmode, X)), X); \
...@@ -1407,7 +1407,7 @@ while (0) ...@@ -1407,7 +1407,7 @@ while (0)
case MOD: \ case MOD: \
case UMOD: \ case UMOD: \
return COSTS_N_INSNS (60); \ return COSTS_N_INSNS (60); \
case PLUS: /* this includes shNadd insns */ \ case PLUS: /* this includes shNadd insns */ \
return COSTS_N_INSNS (1) + 2; return COSTS_N_INSNS (1) + 2;
/* Conditional branches with empty delay slots have a length of two. */ /* Conditional branches with empty delay slots have a length of two. */
......
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