df-scan.c (df_def_record_1): A set destination may be a parallel regardless of mode.

2006-02-08  Daniel Berlin  <dberlin@dberlin.org>

	* df-scan.c (df_def_record_1): A set destination may
	be a parallel regardless of mode.

From-SVN: r110761
This commit is contained in:
Daniel Berlin 2006-02-08 18:37:01 +00:00 committed by Daniel Berlin
parent 3b83180522
commit b5642e2029
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-02-08 Daniel Berlin <dberlin@dberlin.org>
* df-scan.c (df_def_record_1): A set destination may
be a parallel regardless of mode.
2006-02-08 Roger Sayle <roger@eyesopen.com>
PR target/22209

View File

@ -1116,9 +1116,8 @@ df_def_record_1 (struct dataflow *dflow, rtx x,
loc = &SET_DEST (x);
dst = *loc;
/* Some targets place small structures in registers for
return values of functions. */
if (GET_CODE (dst) == PARALLEL && GET_MODE (dst) == BLKmode)
/* It is legal to have a set destination be a parallel. */
if (GET_CODE (dst) == PARALLEL)
{
int i;