[LLVMbugs] [Bug 23122] New: frameescape intrinsic leads to the backend crashing

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Sat Apr 4 14:43:42 PDT 2015


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

            Bug ID: 23122
           Summary: frameescape intrinsic leads to the backend crashing
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Common Code Generator Code
          Assignee: unassignedbugs at nondot.org
          Reporter: david.majnemer at gmail.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified

this C++ crashes the backend:
void g();
void f(bool b) {
  try {
    g();
  } catch (int x) {
    while (true) {
      if (b)
        goto out;
    }
  }
out:
  ;
}

compile with:
clang -cc1 -triple x86_64-pc-win32 t.cpp -S -o - -fexceptions -fcxx-exceptions

-- 
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/20150404/076b6123/attachment.html>


More information about the llvm-bugs mailing list