diff options
author | Alan Modra <amodra@bigpond.net.au> | 2002-04-10 03:50:39 +0000 |
---|---|---|
committer | Alan Modra <amodra@gcc.gnu.org> | 2002-04-10 13:20:39 +0930 |
commit | a6a063b81ce323e49eb23bd87d7147c5cb09814e (patch) | |
tree | 8f57737d03a2fc651bab26e059ff589511d75dfa /gcc/loop.c | |
parent | 7b2e1077614049c9899772aa14edab91e80e7ec5 (diff) | |
download | gcc-a6a063b81ce323e49eb23bd87d7147c5cb09814e.zip gcc-a6a063b81ce323e49eb23bd87d7147c5cb09814e.tar.gz gcc-a6a063b81ce323e49eb23bd87d7147c5cb09814e.tar.bz2 |
re PR rtl-optimization/6233 (simple loop miscompilation)
PR optimization/6233
* rtlanal.c (pure_call_p): New function.
* rtl.h (pure_call_p): Declare.
* loop.c (prescan_loop): Use it to set has_nonconst_call.
* gcse.c (store_killed_in_insn): Use pure_call_p here too.
From-SVN: r52110
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2494,6 +2494,8 @@ prescan_loop (loop) loop_info->unknown_address_altered = 1; loop_info->has_nonconst_call = 1; } + else if (pure_call_p (insn)) + loop_info->has_nonconst_call = 1; loop_info->has_call = 1; if (can_throw_internal (insn)) loop_info->has_multiple_exit_targets = 1; |