aboutsummaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2008-09-25 11:52:47 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2008-09-25 11:52:47 +0000
commit116612b99423703dfdb01a531e42d1444af75e14 (patch)
tree89cc7c43a305576c0d9a684229c967395424e344 /gcc/dbxout.c
parente76314a76e648a95720fcb672bfe92c4697316b2 (diff)
downloadgcc-116612b99423703dfdb01a531e42d1444af75e14.zip
gcc-116612b99423703dfdb01a531e42d1444af75e14.tar.gz
gcc-116612b99423703dfdb01a531e42d1444af75e14.tar.bz2
* dbxout.c (dbxout_parms): Fetch the inner REG inside a PARALLEL.
From-SVN: r140662
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 68cf28e..f4a2792 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -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);