diff options
Diffstat (limited to 'gcc/df-scan.c')
-rw-r--r-- | gcc/df-scan.c | 5 |
1 files changed, 2 insertions, 3 deletions
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; |