Commit 68e4ca7e by Jan Hubicka Committed by Jan Hubicka

i386.c (ix86_hard_regno_mode_ok): AVX modes are valid only when AVX is enabled.

	* i386.c (ix86_hard_regno_mode_ok): AVX modes are valid only when	
	AVX is enabled.

From-SVN: r202335
parent 3c73e2fe
2013-09-06 Jan Hubicka <jh@suse.cz>
* i386.c (ix86_hard_regno_mode_ok): AVX modes are valid only when
AVX is enabled.
2013-09-06 James Greenhalgh <james.greenhalgh@arm.com>
* config/aarch64/aarch64.md
......
......@@ -34466,7 +34466,7 @@ ix86_hard_regno_mode_ok (int regno, enum machine_mode mode)
/* OImode move is available only when AVX is enabled. */
return ((TARGET_AVX && mode == OImode)
|| VALID_AVX256_REG_MODE (mode)
|| (TARGET_AVX && VALID_AVX256_REG_MODE (mode))
|| VALID_SSE_REG_MODE (mode)
|| VALID_SSE2_REG_MODE (mode)
|| VALID_MMX_REG_MODE (mode)
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