[LLVMbugs] [Bug 87] New: llvm-gcc runs out of memory
bugzilla-daemon at zion.cs.uiuc.edu
bugzilla-daemon at zion.cs.uiuc.edu
Tue Nov 4 10:22:53 PST 2003
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=87
Summary: llvm-gcc runs out of memory
Product: tools
Version: trunk
Platform: PC
OS/Version: Linux
Status: NEW
Severity: blocker
Priority: P2
Component: llvm-gcc
AssignedTo: sabre at nondot.org
ReportedBy: brukman+bugs at uiuc.edu
Test case, reduced from linux-2.4.22/kernel/sched.c:
struct list_head {
struct list_head *next, *prev;
};
void __list_add(struct list_head *new,
struct list_head *prev,
struct list_head *next)
{
next->prev = new;
new->next = next;
new->prev = prev;
prev->next = new;
}
signed long schedule_timeout(signed long timeout)
{
switch (timeout)
{
case ((long)(~0UL>>1)):
default: ;
}
return timeout < 0 ? 0 : timeout;
}
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
More information about the llvm-bugs
mailing list