aeubanks added a comment. could you clang-format the patch?
================ Comment at: clang/lib/CodeGen/CGException.cpp:1666-1667 + ++J) { + if (isa<llvm::LoadInst>(J)) { + auto LI = dyn_cast<llvm::LoadInst>(J); + LI->setVolatile(true); ---------------- ``` if (auto*LI = dyn_cast<...>(J)) { ... } ``` and ditto below ================ Comment at: llvm/docs/LangRef.rst:12277 +-feh_asynch (aka MSVC -EHa), these two intrinsics are injected to mark _try +boundary and to prevent from potential exceptions being moved across boundary. +Any set of operations can then be confined to the region by reading their leaf ---------------- `prevent potential exceptions from being moved...` Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D80344/new/ https://reviews.llvm.org/D80344 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits