diff options
author | vmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-20 13:51:31 +0000 |
---|---|---|
committer | vmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-20 13:51:31 +0000 |
commit | 588c67333a8732cf1bd560c880e6146b3fb1ddf0 (patch) | |
tree | 53d4e3e04456e435bad6b701e3065070f6c36722 /gcc/ira-emit.c | |
parent | 55e9d7d7b1ed4bc4ee5ca2f0d2522e12a137b77b (diff) | |
download | gcc-588c67333a8732cf1bd560c880e6146b3fb1ddf0.tar.gz |
2010-10-20 Vladimir Makarov <vmakarov@redhat.com>
PR fortran/42169
* ira-emit.c (store_can_be_removed_p): Return false instead of
gcc_unreachable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165722 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ira-emit.c')
-rw-r--r-- | gcc/ira-emit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ira-emit.c b/gcc/ira-emit.c index 7221e444b0d..b90adb71da3 100644 --- a/gcc/ira-emit.c +++ b/gcc/ira-emit.c @@ -367,7 +367,8 @@ store_can_be_removed_p (ira_allocno_t src_allocno, ira_allocno_t dest_allocno) prohibit removal of the store in such complicated case. */ return false; } - gcc_unreachable (); + /* It is actually a loop entry -- do not remove the store. */ + return false; } /* Generate and attach moves to the edge E. This looks at the final |