rs6000.c (rs6000_emit_le_vsx_move): Relax assert to permit subregs.

2014-02-23  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

	* config/rs6000/rs6000.c (rs6000_emit_le_vsx_move): Relax assert
	to permit subregs.

From-SVN: r208052
This commit is contained in:
Bill Schmidt 2014-02-23 16:28:32 +00:00 committed by William Schmidt
parent 086de49080
commit 34c25d2393
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-02-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
* config/rs6000/rs6000.c (rs6000_emit_le_vsx_move): Relax assert
to permit subregs.
2014-02-23 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
* config/rs6000/altivec.md (altivec_lve<VI_char>x): Replace

View File

@ -8040,7 +8040,7 @@ rs6000_emit_le_vsx_move (rtx dest, rtx source, enum machine_mode mode)
if (MEM_P (source))
{
gcc_assert (REG_P (dest));
gcc_assert (REG_P (dest) || GET_CODE (dest) == SUBREG);
rs6000_emit_le_vsx_load (dest, source, mode);
}
else