[llvm-bugs] [Bug 26824] New: [seh] continue out of finally crashes clang

via llvm-bugs llvm-bugs at lists.llvm.org
Wed Mar 2 15:40:33 PST 2016


https://llvm.org/bugs/show_bug.cgi?id=26824

            Bug ID: 26824
           Summary: [seh] continue out of finally crashes clang
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: LLVM Codegen
          Assignee: unassignedclangbugs at nondot.org
          Reporter: david.majnemer at gmail.com
                CC: llvm-bugs at lists.llvm.org
    Classification: Unclassified

consider:
void f() {
  for (;;) {
    __try {
    } __finally {
      continue;
    }
  }
}

run with:
clang -cc1 -triple x86_64-pc-windows-msvc18.0.0 -emit-llvm-only -fms-extensions
-x c t.c

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20160302/ce7cfe78/attachment.html>


More information about the llvm-bugs mailing list