rtlanal.c (find_first_parameter_load): Call note_stores only on the instructions.

* rtlanal.c (find_first_parameter_load): Call note_stores
	only on the instructions.

From-SVN: r44693
This commit is contained in:
Jan Hubicka 2001-08-07 16:59:30 +02:00 committed by Jan Hubicka
parent 41e0f05c2d
commit 0d025d4348
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Aug 7 16:52:54 CEST 2001 Jan Hubicka <jh@suse.cz>
* rtlanal.c (find_first_parameter_load): Call note_stores
only on the instructions.
Tue Aug 7 14:56:16 CEST 2001 Jan Hubicka <jh@suse.cz>
* alias.c (nonlocal_mentioned_p):

View File

@ -2862,7 +2862,8 @@ find_first_parameter_load (call_insn, boundary)
break;
}
note_stores (PATTERN (before), parms_set, &parm);
if (INSN_P (before))
note_stores (PATTERN (before), parms_set, &parm);
}
return before;
}