Commit 6ab46dff by Gavin Romig-Koch Committed by Gavin Romig-Koch

expr.c (expand_expr): Allow RTL_EXPR's through the MAX_INTEGER_COMPUTATION_MODE checks.

	* expr.c (expand_expr): Allow RTL_EXPR's through the
	MAX_INTEGER_COMPUTATION_MODE checks.

From-SVN: r27768
parent 58ec4285
Fri Jun 25 11:26:38 1999 Gavin Romig-Koch <gavin@cygnus.com>
* expr.c (expand_expr): Allow RTL_EXPR's through the
MAX_INTEGER_COMPUTATION_MODE checks.
Fri Jun 25 06:06:37 1999 Richard Henderson <rth@cygnus.com> Fri Jun 25 06:06:37 1999 Richard Henderson <rth@cygnus.com>
* alpha.h (MASK_SUPPORT_ARCH, MASK_CPU_EV5, MASK_CPU_EV6): Define * alpha.h (MASK_SUPPORT_ARCH, MASK_CPU_EV5, MASK_CPU_EV6): Define
......
...@@ -5595,7 +5595,8 @@ expand_expr (exp, target, tmode, modifier) ...@@ -5595,7 +5595,8 @@ expand_expr (exp, target, tmode, modifier)
&& TREE_CODE (exp) != BIT_FIELD_REF && TREE_CODE (exp) != BIT_FIELD_REF
&& TREE_CODE (exp) != INDIRECT_REF && TREE_CODE (exp) != INDIRECT_REF
&& TREE_CODE (exp) != CALL_EXPR && TREE_CODE (exp) != CALL_EXPR
&& TREE_CODE (exp) != VAR_DECL) && TREE_CODE (exp) != VAR_DECL
&& TREE_CODE (exp) != RTL_EXPR)
{ {
enum machine_mode mode = GET_MODE (target); enum machine_mode mode = GET_MODE (target);
...@@ -5613,6 +5614,7 @@ expand_expr (exp, target, tmode, modifier) ...@@ -5613,6 +5614,7 @@ expand_expr (exp, target, tmode, modifier)
&& TREE_CODE (exp) != INDIRECT_REF && TREE_CODE (exp) != INDIRECT_REF
&& TREE_CODE (exp) != VAR_DECL && TREE_CODE (exp) != VAR_DECL
&& TREE_CODE (exp) != CALL_EXPR && TREE_CODE (exp) != CALL_EXPR
&& TREE_CODE (exp) != RTL_EXPR
&& GET_MODE_CLASS (tmode) == MODE_INT && GET_MODE_CLASS (tmode) == MODE_INT
&& tmode > MAX_INTEGER_COMPUTATION_MODE) && tmode > MAX_INTEGER_COMPUTATION_MODE)
fatal ("unsupported wide integer operation"); fatal ("unsupported wide integer operation");
......
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