diff options
author | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-16 15:48:28 +0000 |
---|---|---|
committer | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-16 15:48:28 +0000 |
commit | 23e85af8197fcf90dc97db99c2db821321a1fc34 (patch) | |
tree | e84c04f24537b9fb1a393b858d71f72702af8779 /gcc/config | |
parent | 029ca87fab849657da8802db2fcc8d22581f19b3 (diff) | |
download | gcc-23e85af8197fcf90dc97db99c2db821321a1fc34.tar.gz |
* config/arc/arc.c: Delete pasto.
* config/pa/pa.c (pa_function_arg_boundary): Add missing comparison.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166806 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/arc/arc.c | 4 | ||||
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/gcc/config/arc/arc.c b/gcc/config/arc/arc.c index 2b1c704b318..d822f59eb98 100644 --- a/gcc/config/arc/arc.c +++ b/gcc/config/arc/arc.c @@ -2426,10 +2426,6 @@ arc_function_arg_advance (CUMULATIVE_ARGS *cum, enum machine_mode mode, + ROUND_ADVANCE_ARG (mode, type)); } -/* If defined, a C expression that gives the alignment boundary, in bits, - of an argument with the specified mode and type. If it is not defined, - PARM_BOUNDARY is used for all arguments. */ -#define FUNCTION_ARG_BOUNDARY(MODE, TYPE) \ /* Worker function for TARGET_FUNCTION_ARG_BOUNDARY. */ static unsigned int diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 988d80fcd1f..366ce015bcf 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -9613,7 +9613,7 @@ pa_function_arg_boundary (enum machine_mode mode, const_tree type) ? (integer_zerop (size) || !TREE_CONSTANT (size) || int_size_in_bytes (type) <= UNITS_PER_WORD) - : GET_MODE_SIZE (mode)); + : GET_MODE_SIZE (mode) <= UNITS_PER_WORD); return singleword ? PARM_BOUNDARY : MAX_PARM_BOUNDARY; } |