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: unassignedb...@nondot.org
          Reporter: rafael.espind...@gmail.com
                CC: llvm-bugs@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",@progbits

gcc produces

    .section    .gcc_except_table._Z1fIiEvv,"aG",@progbits,_Z1fIiEvv,comdat

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to