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

             Bug #: 11872
           Summary: Large stack object causes llc to use up all memory
           Product: new-bugs
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: new bugs
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]
    Classification: Unclassified


Running llc on the following test uses up all memory on my machine.  Probably
codegen should detect and error out on huge stack frames.

target triple = "x86_64-unknown-linux-gnu"

%struct.frame_overflow__bitmap_t = type { [9223372036854775807 x i8] }

define void @frame_overflow() {
entry:
  %memtmp = alloca %struct.frame_overflow__bitmap_t, align 8
  ret void
}

-- 
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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to