FastISel: remove EH_LABEL skipping code.
authorJames Y Knight <jyknight@google.com>
Mon, 16 Jan 2023 23:15:00 +0000 (18:15 -0500)
committerJames Y Knight <jyknight@google.com>
Mon, 16 Jan 2023 23:15:00 +0000 (18:15 -0500)
commita1551fdd4888790c65a108e47a7713d8f6837483
tree39304d0553734704a7a01de6a3d50fab7a7f57d3
parent7bf1e441da6b59a25495fde8e34939f93548cc6d
FastISel: remove EH_LABEL skipping code.

This was intended to skip past the EH_LABEL which is added at the top
of a landingpad block. But, it is unnecessary because `LastLocalValue`
is already set to point past the EH_LABEL in that case.

Thus, currently, this is dead-code. I am removing it because it _also_
attempts to skip over EH_LABELs emitted around a call. Currently, this
situation never arises, but it becomes harmful after a future
in-progress commit.
llvm/lib/CodeGen/SelectionDAG/FastISel.cpp