* dbxout.c (dbxout_parms): Fetch the inner REG inside a PARALLEL.

From-SVN: r140662
This commit is contained in:
Eric Botcazou 2008-09-25 11:52:47 +00:00 committed by Eric Botcazou
parent e76314a76e
commit 116612b994
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2008-09-25 Eric Botcazou <ebotcazou@adacore.com>
* dbxout.c (dbxout_parms): Fetch the inner REG inside a PARALLEL.
2008-09-25 Sergei Dyshel <sergeid@il.ibm.com>
* matrix-reorg.c (transform_allocation_sites): Initializers

View File

@ -3376,6 +3376,8 @@ dbxout_parms (tree parms)
was passed. */
if (REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
best_rtl = DECL_RTL (parms);
else if (GET_CODE (DECL_INCOMING_RTL (parms)) == PARALLEL)
best_rtl = XEXP (XVECEXP (DECL_INCOMING_RTL (parms), 0, 0), 0);
else
best_rtl = DECL_INCOMING_RTL (parms);