[LLVMbugs] [Bug 3226] New: clang will infinite loop on the attached code snippet when it has goto-out-of- @try support

bugzilla-daemon at cs.uiuc.edu bugzilla-daemon at cs.uiuc.edu
Tue Dec 16 22:35:38 PST 2008


http://llvm.org/bugs/show_bug.cgi?id=3226

           Summary: clang will infinite loop on the attached code snippet
                    when it has goto-out-of- at try support
           Product: clang
           Version: unspecified
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: LLVM Codegen
        AssignedTo: unassignedclangbugs at nondot.org
        ReportedBy: andersca at mac.com
                CC: llvmbugs at cs.uiuc.edu


void f()
{
  @try {
    goto L;
  } @finally {
  L:
    printf("finally\n");
  }

return;
}

int
main(int argc, char **argv)
{
  f();

  return 0;
}


-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the llvm-bugs mailing list