In CFGSort, we try to make EH pads have higher priorities as soon as
they are ready to be sorted, to prevent creation of unwind destination
mismatches in CFGStackify. We did that by making priority queues'
comparison function prefer EH pads, but it was possible for an EH pad
to be popped from Preferred queue and then not sorted immediately and
enter Ready queue instead in a certain condition. This patch makes
sure that special condition does not consider EH pads as its candidates.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM