Reword a misleading comment discussing landingpads and SEH
authorReid Kleckner <rnk@google.com>
Tue, 1 Mar 2016 19:51:48 +0000 (19:51 +0000)
committerReid Kleckner <rnk@google.com>
Tue, 1 Mar 2016 19:51:48 +0000 (19:51 +0000)
SEH doesn't use landingpads anymore.

llvm-svn: 262382

clang/lib/CodeGen/CGException.cpp

index 3c73000..1b66141 100644 (file)
@@ -686,8 +686,10 @@ llvm::BasicBlock *CodeGenFunction::getInvokeDestImpl() {
   assert(EHStack.requiresLandingPad());
   assert(!EHStack.empty());
 
-  // If exceptions are disabled, there are usually no landingpads. However, when
-  // SEH is enabled, functions using SEH still get landingpads.
+  // If exceptions are disabled and SEH is not in use, then there is no invoke
+  // destination. SEH "works" even if exceptions are off. In practice, this
+  // means that C++ destructors and other EH cleanups don't run, which is
+  // consistent with MSVC's behavior.
   const LangOptions &LO = CGM.getLangOpts();
   if (!LO.Exceptions) {
     if (!LO.Borland && !LO.MicrosoftExt)