regrename.c (build_def_use): Move recog_memoized before extract_insn.

* regrename.c (build_def_use): Move recog_memoized
	before extract_insn.

From-SVN: r51313
This commit is contained in:
Jakub Jelinek 2002-03-25 13:51:49 +01:00 committed by Jakub Jelinek
parent 6ddae61286
commit 2ed1f154c1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-03-25 Jakub Jelinek <jakub@redhat.com>
* regrename.c (build_def_use): Move recog_memoized
before extract_insn.
2002-03-25 Jakub Jelinek <jakub@redhat.com>
PR target/6043

View File

@ -784,9 +784,9 @@ build_def_use (bb)
(6) For any write we find in an operand, make a new chain.
(7) For any REG_UNUSED, close any chains we just opened. */
icode = recog_memoized (insn);
extract_insn (insn);
constrain_operands (1);
icode = recog_memoized (insn);
preprocess_constraints ();
alt = which_alternative;
n_ops = recog_data.n_operands;