http://llvm.org/bugs/show_bug.cgi?id=15304
Bug ID: 15304
Summary: Catch by reference leads to segfault
Product: clang
Version: 3.2
Hardware: PC
OS: Linux
Status: NEW
Severity: enhancement
Priority: P
Component: C++
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
Classification: Unclassified
This code (reduced from a more complicated example), compiled with clang++
3.2-1~exp5ubuntu2 on Ubuntu 13.04 amd64, leads to a segfault on the catch line.
struct E {};
int main()
{
try {
throw E();
} catch (E &e) {
}
return 0;
}
--
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