regrename.c (build_def_use): Don't copy RTX.

* regrename.c (build_def_use): Don't copy RTX.

From-SVN: r137235
This commit is contained in:
Andrew Jenner 2008-06-28 21:37:04 +00:00 committed by Andrew Jenner
parent 38bb2b6555
commit d1c1c79f19
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-06-28 Andrew Jenner <andrew@codesourcery.com>
* regrename.c (build_def_use): Don't copy RTX.
2008-06-28 Sandra Loosemore <sandra@codesourcery.com>
* doc/extend.texi (Variable Attributes): Use @ref instead of @xref.

View File

@ -812,7 +812,7 @@ build_def_use (basic_block bb)
OP_IN, 0);
for (i = 0; i < recog_data.n_dups; i++)
*recog_data.dup_loc[i] = copy_rtx (old_dups[i]);
*recog_data.dup_loc[i] = old_dups[i];
for (i = 0; i < n_ops; i++)
*recog_data.operand_loc[i] = old_operands[i];
if (recog_data.n_dups)