summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2008-09-25 11:52:47 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2008-09-25 11:52:47 +0000
commitab26248eabc88732e02205c13faa457f0e027605 (patch)
tree89cc7c43a305576c0d9a684229c967395424e344 /gcc/dbxout.c
parent016f15258f20a4851763186d5043fbaca03e286c (diff)
downloadgcc-ab26248eabc88732e02205c13faa457f0e027605.tar.gz
* dbxout.c (dbxout_parms): Fetch the inner REG inside a PARALLEL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140662 138bc75d-0d04-0410-961f-82ee72b054a4
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 68cf28e4eca..f4a2792bc93 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);