summaryrefslogtreecommitdiff
path: root/gcc/config/romp
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1992-05-29 20:14:01 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1992-05-29 20:14:01 +0000
commitbbe57f89749c2d78b982e12f43202f56498546c1 (patch)
tree58f1800da40cd60401172f6ceb339fe259f134c8 /gcc/config/romp
parent2f6f79ffbbaad719346bdbed6ff62737e68806de (diff)
downloadgcc-bbe57f89749c2d78b982e12f43202f56498546c1.tar.gz
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1125 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/romp')
-rw-r--r--gcc/config/romp/romp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/romp/romp.h b/gcc/config/romp/romp.h
index 0c06624092b..6ec7eee23ae 100644
--- a/gcc/config/romp/romp.h
+++ b/gcc/config/romp/romp.h
@@ -638,8 +638,9 @@ struct rt_cargs {int gregs, fregs; };
#define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) \
(! (NAMED) ? 0 \
- : USE_FP_REG(MODE,CUM) ? gen_rtx(REG, (MODE),(CUM.fregs) + 17) \
- : (CUM).gregs < 4 ? gen_rtx(REG, (MODE), 2 + (CUM).gregs) : 0)
+ : ((TYPE) != 0 && TREE_CODE (TYPE_CODE (TYPE)) != INTEGER_CST) \
+ : USE_FP_REG(MODE,CUM) ? gen_rtx(REG, (MODE),(CUM.fregs) + 17) \
+ : (CUM).gregs < 4 ? gen_rtx(REG, (MODE), 2 + (CUM).gregs) : 0)
/* For an arg passed partly in registers and partly in memory,
this is the number of registers used.