Commit d1c1c79f by Andrew Jenner Committed by Andrew Jenner

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

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

From-SVN: r137235
parent 38bb2b65
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.
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment