aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/df-scan.c5
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7194374..ae49e0f 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/df-scan.c b/gcc/df-scan.c
index 6cc62c7..e6460fa 100644
--- a/gcc/df-scan.c
+++ b/gcc/df-scan.c
@@ -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;