[llvm-bugs] [Bug 26635] New: gcc produces one .gcc_except_table per comdat, we produce only one
via llvm-bugs
llvm-bugs at lists.llvm.org
Tue Feb 16 08:01:23 PST 2016
https://llvm.org/bugs/show_bug.cgi?id=26635
Bug ID: 26635
Summary: gcc produces one .gcc_except_table per comdat, we
produce only one
Product: libraries
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: Common Code Generator Code
Assignee: unassignedbugs at nondot.org
Reporter: rafael.espindola at gmail.com
CC: llvm-bugs at lists.llvm.org
Classification: Unclassified
Given
void g();
template <typename T> void f() {
try {
g();
} catch (int x) {
}
}
template void f<int>();
we produce
.section .gcc_except_table,"a", at progbits
gcc produces
.section .gcc_except_table._Z1fIiEvv,"aG", at progbits,_Z1fIiEvv,comdat
--
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20160216/7642a010/attachment.html>
More information about the llvm-bugs
mailing list