summaryrefslogtreecommitdiff
path: root/gcc/config/romp
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1992-04-19 10:08:02 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1992-04-19 10:08:02 +0000
commit6dbe5b339c96dc24ab2cf8e5b7bedc856d24d11f (patch)
treeafa96038a56084700ac0109a5b5d8f4ab4e58423 /gcc/config/romp
parentc39100fe666e78d54efb6234ab2d521c74eab927 (diff)
downloadgcc-6dbe5b339c96dc24ab2cf8e5b7bedc856d24d11f.tar.gz
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@791 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/romp')
-rw-r--r--gcc/config/romp/romp.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/gcc/config/romp/romp.h b/gcc/config/romp/romp.h
index bfb5a133e37..0c06624092b 100644
--- a/gcc/config/romp/romp.h
+++ b/gcc/config/romp/romp.h
@@ -1234,20 +1234,22 @@ struct rt_cargs {int gregs, fregs; };
#define CONST_COSTS(RTX,CODE,OUTER_CODE) \
case CONST_INT: \
if ((OUTER_CODE) == IOR && exact_log2 (INTVAL (RTX)) >= 0 \
- || (OUTER_CODE) == AND && exact_log2 (~INTVAL (RTX)) >= 0 \
- || (((OUTER_CODE) == PLUS || (OUTER_CODE) == MINUS) \
+ || (OUTER_CODE) == AND && exact_log2 (~INTVAL (RTX)) >= 0 \
+ || (((OUTER_CODE) == PLUS || (OUTER_CODE) == MINUS) \
&& (unsigned int) (INTVAL (RTX) + 15) < 31) \
|| ((OUTER_CODE) == SET && (unsigned int) INTVAL (RTX) < 16))\
return 0; \
- return ((unsigned)(INTVAL(RTX) + 0x8000) < 0x10000 || (INTVAL (RTX) & 0xffff0000) == 0) ? 0 : COSTS_N_INSNS (2);\
+ return ((unsigned int) (INTVAL(RTX) + 0x8000) < 0x10000 \
+ || (INTVAL (RTX) & 0xffff0000) == 0) ? 0 : COSTS_N_INSNS (2);\
case CONST: \
case LABEL_REF: \
case SYMBOL_REF: \
if (current_function_operand (RTX, Pmode)) return 0; \
- return COSTS_N_INSNS (2);
+ return COSTS_N_INSNS (2); \
case CONST_DOUBLE: \
if ((RTX) == CONST0_RTX (GET_MODE (RTX))) return 2; \
- return (GET_MODE_CLASS (GET_MODE (RTX)) == MODE_FLOAT) ? COSTS_N_INSNS (5) : COSTS_N_INSNS (4);
+ return ((GET_MODE_CLASS (GET_MODE (RTX)) == MODE_FLOAT) \
+ ? COSTS_N_INSNS (5) : COSTS_N_INSNS (4));
/* Provide the costs of a rtl expression. This is in the body of a
switch on CODE.