From 760199f87c61d9c27a7a677867615623d93be436 Mon Sep 17 00:00:00 2001 From: rakdver Date: Mon, 23 Aug 2004 07:47:31 +0000 Subject: [PATCH] * tree-ssa-operands.c (get_call_expr_operands): Add VUSE operands for noreturn functions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86411 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/tree-ssa-operands.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 29ac16e..3550910 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-08-23 Zdenek Dvorak + + * tree-ssa-operands.c (get_call_expr_operands): Add VUSE operands for + noreturn functions. + 2004-08-23 Richard Sandiford * config/mips/mips.h (ISA_HAS_DCLZ_DCLO): Delete. diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 230167f..5e49683 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1378,7 +1378,7 @@ get_call_expr_operands (tree stmt, tree expr) if (TREE_SIDE_EFFECTS (expr) && !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN))) add_call_clobber_ops (stmt); - else if (!(call_flags & (ECF_CONST | ECF_NORETURN))) + else if (!(call_flags & ECF_CONST)) add_call_read_ops (stmt); } } -- 2.7.4