Commit 231f6e09 by Sandra Loosemore Committed by Sandra Loosemore

re PR target/68410 (config/nios2/nios2.c: 4123: duplicates in expression)

2015-11-18  Sandra Loosemore  <sandra@codesourcery.com>

	PR target/68410
	* config/nios2/nios2.c (cdx_and_immed): Remove duplicate tests
	from || expression.

From-SVN: r230563
parent b6ff50e3
2015-11-18 Sandra Loosemore <sandra@codesourcery.com>
PR target/68410
* config/nios2/nios2.c (cdx_and_immed): Remove duplicate tests
from || expression.
2015-11-18 Pitchumani Sivanupandi <pitchumani.s@atmel.com>
* config/avr/avr-mcus.def: Add new avr4 devices atmega48pb and
......@@ -4120,8 +4120,8 @@ cdx_and_immed (rtx op)
HOST_WIDE_INT ival = INTVAL (op);
return (ival == 1 || ival == 2 || ival == 3 || ival == 4
|| ival == 8 || ival == 0xf || ival == 0x10
|| ival == 0x10 || ival == 0x1f || ival == 0x20
|| ival == 0x3f || ival == 0x3f || ival == 0x7f
|| ival == 0x1f || ival == 0x20
|| ival == 0x3f || ival == 0x7f
|| ival == 0x80 || ival == 0xff || ival == 0x7ff
|| ival == 0xff00 || ival == 0xffff);
}
......
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