Commit f69dacda by Uros Bizjak Committed by Uros Bizjak

i386.c (memory_address_length): Increase len only when rip_relative_addr_p returns false.

	* config/i386/i386.c (memory_address_length): Increase len
	only when rip_relative_addr_p returns false.

From-SVN: r244341
parent 91d01bf4
2017-01-11 Uros Bizjak <ubizjak@gmail.com>
* config/i386/i386.c (memory_address_length): Increase len
only when rip_relative_addr_p returns false.
2017-01-11 Julia Koval <julia.koval@intel.com>
* common/config/i386/i386-common.c (OPTION_MASK_ISA_SGX_UNSET): New.
......
......@@ -28744,7 +28744,7 @@ memory_address_length (rtx addr, bool lea)
else if (disp && !base && !index)
{
len += 4;
if (rip_relative_addr_p (&parts))
if (!rip_relative_addr_p (&parts))
len++;
}
else
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