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: unassignedclangb...@nondot.org
          Reporter: david.majne...@gmail.com
                CC: llvm-bugs@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.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to