Commit c0e1b12f by Zdenek Dvorak Committed by Zdenek Dvorak

tree-ssa-operands.c (get_call_expr_operands): Add VUSE operands for noreturn functions.

	* tree-ssa-operands.c (get_call_expr_operands): Add VUSE operands for
	noreturn functions.

From-SVN: r86411
parent 400a9325
2004-08-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* tree-ssa-operands.c (get_call_expr_operands): Add VUSE operands for
noreturn functions.
2004-08-23 Richard Sandiford <rsandifo@redhat.com> 2004-08-23 Richard Sandiford <rsandifo@redhat.com>
* config/mips/mips.h (ISA_HAS_DCLZ_DCLO): Delete. * config/mips/mips.h (ISA_HAS_DCLZ_DCLO): Delete.
......
...@@ -1378,7 +1378,7 @@ get_call_expr_operands (tree stmt, tree expr) ...@@ -1378,7 +1378,7 @@ get_call_expr_operands (tree stmt, tree expr)
if (TREE_SIDE_EFFECTS (expr) if (TREE_SIDE_EFFECTS (expr)
&& !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN))) && !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
add_call_clobber_ops (stmt); add_call_clobber_ops (stmt);
else if (!(call_flags & (ECF_CONST | ECF_NORETURN))) else if (!(call_flags & ECF_CONST))
add_call_read_ops (stmt); add_call_read_ops (stmt);
} }
} }
......
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