[PATCH] D77124: Handle CET for -exception-model sjlj
LuoYuanke via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 13 22:47:04 PDT 2020
LuoYuanke added inline comments.
================
Comment at: llvm/lib/Target/X86/X86IndirectBranchTracking.cpp:152
+ // New Landingpad BB without EHLabel.
+ if (MBB.isEHPad()) {
+ if (I->isDebugInstr())
----------------
The isEHPad() include CatchSwitch, CatchPad, CleanupPad and LandingPad. Do we want to insert endbr to all of them or just for LandingPad?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77124/new/
https://reviews.llvm.org/D77124
More information about the llvm-commits
mailing list