Commit 25af74a0 by Jan Hubicka Committed by Jan Hubicka

combine.c (record_promoted_value): Allow bitsize of mode to be equivalent to…

combine.c (record_promoted_value): Allow bitsize of mode to be equivalent to HOST_BITS_PER_WISE_INT.


	* combine.c (record_promoted_value):  Allow bitsize of mode
	to be equivalent to HOST_BITS_PER_WISE_INT.

From-SVN: r35346
parent dbab7b72
Sun Jul 30 20:27:36 MET DST 2000 Jan Hubicka <jh@suse.cz>
* combine.c (record_promoted_value): Allow bitsize of mode
to be equivalent to HOST_BITS_PER_WISE_INT.
Sun Jul 30 20:25:21 MET DST 2000 Jan Hubicka <jh@suse.cz> Sun Jul 30 20:25:21 MET DST 2000 Jan Hubicka <jh@suse.cz>
* function.c (assign_stack_local_1, assign_stack_temp_for_type): * function.c (assign_stack_local_1, assign_stack_temp_for_type):
......
...@@ -11284,7 +11284,7 @@ record_promoted_value (insn, subreg) ...@@ -11284,7 +11284,7 @@ record_promoted_value (insn, subreg)
unsigned int regno = REGNO (SUBREG_REG (subreg)); unsigned int regno = REGNO (SUBREG_REG (subreg));
enum machine_mode mode = GET_MODE (subreg); enum machine_mode mode = GET_MODE (subreg);
if (GET_MODE_BITSIZE (mode) >= HOST_BITS_PER_WIDE_INT) if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
return; return;
for (links = LOG_LINKS (insn); links; ) for (links = LOG_LINKS (insn); links; )
......
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