Commit 2ae88ecd by John David Anglin Committed by John David Anglin

re PR target/33062 (ICE in emit_move_insn and expand_call with -fdefault-integer-8)

	PR target/33062
	* pa.c (function_value): Use GET_MODE_BITSIZE instead of TYPE_PRECISION.

From-SVN: r128516
parent 4934454b
2007-09-15 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR target/33062
* pa.c (function_value): Use GET_MODE_BITSIZE instead of TYPE_PRECISION.
2007-09-15 Dorit Nuzman <dorit@il.ibm.com> 2007-09-15 Dorit Nuzman <dorit@il.ibm.com>
* tree-vect-transform.c (vect_get_vec_defs_for_stmt_copy): check if * tree-vect-transform.c (vect_get_vec_defs_for_stmt_copy): check if
...@@ -9075,7 +9075,7 @@ function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED) ...@@ -9075,7 +9075,7 @@ function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED)
} }
if ((INTEGRAL_TYPE_P (valtype) if ((INTEGRAL_TYPE_P (valtype)
&& TYPE_PRECISION (valtype) < BITS_PER_WORD) && GET_MODE_BITSIZE (TYPE_MODE (valtype)) < BITS_PER_WORD)
|| POINTER_TYPE_P (valtype)) || POINTER_TYPE_P (valtype))
valmode = word_mode; valmode = word_mode;
else else
......
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