[LLVMbugs] [Bug 159] NEW: [llvm-gcc] crash when reducing test case from bug 158 further
bugzilla-daemon at zion.cs.uiuc.edu
bugzilla-daemon at zion.cs.uiuc.edu
Wed Nov 26 13:48:02 PST 2003
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=159
Summary: [llvm-gcc] crash when reducing test case from bug 158
further
Product: tools
Version: trunk
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: llvm-gcc
AssignedTo: sabre at nondot.org
ReportedBy: brukman+bugs at uiuc.edu
Trying to get as minimal as possible with my test cases, I attempted to delete
an entry from the first struct, with this result:
% cat it.i
struct i387_soft_struct {
long cwd;
};
union i387_union {
struct i387_soft_struct soft;
};
struct thread_struct {
union i387_union i387;
};
void _init_task_union(void) {
struct thread_struct thread = (struct thread_struct) { {{0}} };
}
% llvm-gcc -c it.i
it.i: In function `_init_task_union':
it.i:11: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://llvm.cs.uiuc.edu> for instructions.
------- 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