This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: GCSE botch with EH case
- From: kenner at vlsi1 dot ultra dot nyu dot edu (Richard Kenner)
- To: dberlin at dberlin dot org
- Cc: gcc at gcc dot gnu dot org
- Date: Sun, 15 Aug 04 16:50:35 EDT
- Subject: Re: GCSE botch with EH case
This causes trapping expressions to be not transparent/antic in blocks
whose predecessors are abnormal. For store motion, you need to do the
same, except they can't be transparent/antic in blocks whose successor
edges are abnormal edges. This will prevent it from pushing stores
down across abnormal edges.
I don't follow. The stores in question aren't trapping expressions. The
issue isn't that the store could trap (it can't), but that it is being moved
from a block which is the normal case into the block corresponding to a
handler. So I don't see how that code you mention is related to this problem
from what you and the comments in that code says.