Commit 2b86de4c by Jeff Law Committed by Jeff Law

optabs.c (expand_binop): Use "machine_mode" rather than "enum machine mode" in most recent change.

	* optabs.c (expand_binop): Use "machine_mode" rather than
	"enum machine mode" in most recent change.

From-SVN: r266698
parent 71b14428
2018-11-30 Jeff Law <law@redhat.com>
* optabs.c (expand_binop): Use "machine_mode" rather than
"enum machine mode" in most recent change.
2018-11-30 Wilco Dijkstra <wdijkstr@arm.com> 2018-11-30 Wilco Dijkstra <wdijkstr@arm.com>
PR middle-end/64242 PR middle-end/64242
...@@ -1377,8 +1377,8 @@ expand_binop (machine_mode mode, optab binoptab, rtx op0, rtx op1, ...@@ -1377,8 +1377,8 @@ expand_binop (machine_mode mode, optab binoptab, rtx op0, rtx op1,
start_sequence (); start_sequence ();
/* Do the actual arithmetic. */ /* Do the actual arithmetic. */
enum machine_mode op0_mode = GET_MODE (op0); machine_mode op0_mode = GET_MODE (op0);
enum machine_mode op1_mode = GET_MODE (op1); machine_mode op1_mode = GET_MODE (op1);
if (op0_mode == VOIDmode) if (op0_mode == VOIDmode)
op0_mode = int_mode; op0_mode = int_mode;
if (op1_mode == VOIDmode) if (op1_mode == VOIDmode)
......
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