* reload1.c (reload): Purge invalid ASMs in the final pass.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117061
138bc75d-0d04-0410-961f-
82ee72b054a4
+2006-09-19 Steven Bosscher <steven@gcc.gnu.org>
+
+ PR rtl-optimization/21299
+ * reload1.c (reload): Purge invalid ASMs in the final pass.
+
2006-09-19 Steve Ellcey <sje@cup.hp.com>
PR 28490
{
rtx *pnote;
+ /* Clean up invalid ASMs so that they don't confuse later passes.
+ See PR 21299. */
+ if (asm_noperands (PATTERN (insn)) >= 0)
+ {
+ extract_insn (insn);
+ if (!constrain_operands (1))
+ {
+ error_for_asm (insn,
+ "%<asm%> operand has impossible constraints");
+ delete_insn (insn);
+ continue;
+ }
+ }
+
if (CALL_P (insn))
replace_pseudos_in (& CALL_INSN_FUNCTION_USAGE (insn),
VOIDmode, CALL_INSN_FUNCTION_USAGE (insn));