Skip to content
Snippets Groups Projects
Unverified Commit 2ab70a4a authored by Xi Ruoyao's avatar Xi Ruoyao
Browse files

mips: avoid signed overflow in LUI_OPERAND [PR104842]

gcc/

	PR target/104842
	* config/mips/mips.h (LUI_OPERAND): Cast the input to an unsigned
	value before adding an offset.
parent 17bffa0c
No related branches found
No related tags found
No related merge requests found
...@@ -2309,7 +2309,7 @@ enum reg_class ...@@ -2309,7 +2309,7 @@ enum reg_class
#define LUI_OPERAND(VALUE) \ #define LUI_OPERAND(VALUE) \
(((VALUE) | 0x7fff0000) == 0x7fff0000 \ (((VALUE) | 0x7fff0000) == 0x7fff0000 \
|| ((VALUE) | 0x7fff0000) + 0x10000 == 0) || ((unsigned HOST_WIDE_INT) (VALUE) | 0x7fff0000) + 0x10000 == 0)
/* Return a value X with the low 16 bits clear, and such that /* Return a value X with the low 16 bits clear, and such that
VALUE - X is a signed 16-bit value. */ VALUE - X is a signed 16-bit value. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment