diff options
author | Graham Stott <grahams@redhat.com> | 2002-02-27 13:50:57 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2002-02-27 13:50:57 +0000 |
commit | 5c6a85b70c04049f36f5a7359726f178d6a1fbb6 (patch) | |
tree | d9f21f16836487518537e5e179490f070b62af16 /gcc/df.c | |
parent | cd98ad035e95ad1acfd585002d0491fba1ece4a7 (diff) | |
download | gcc-5c6a85b70c04049f36f5a7359726f178d6a1fbb6.tar.gz |
* df.c (df_insn_refs_record): Use XEXP (x, 0) for USE.
From-SVN: r50098
Diffstat (limited to 'gcc/df.c')
-rw-r--r-- | gcc/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1242,7 +1242,7 @@ df_insn_refs_record (df, bb, insn) /* The stack ptr is used (honorarily) by a CALL insn. */ x = df_reg_use_gen (STACK_POINTER_REGNUM); - df_uses_record (df, &SET_DEST (x), DF_REF_REG_USE, bb, insn, 0); + df_uses_record (df, &XEXP (x, 0), DF_REF_REG_USE, bb, insn, 0); if (df->flags & DF_HARD_REGS) { |