ary: 4.1.0 regression: std::__copy_streambufs link failure
when _GLIBCXX_DEBUG is defined
Product: gcc
Version: 4.1.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
AssignedTo: unassigned at
ICE with: "-fmudflap -D_GLIBCXX_DEBUG"
Product: gcc
Version: 4.0.0
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: libmudflap
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: ctsa at u dot wa
map codon_table1(tab_tmp,tab_tmp+tsize);
lup_map::const_iterator s=codon_table1.find(c);
if( s != codon_table1.end() ){
return s->second;
} else {
return 'X';
}
}
main(){
char a = codon_trans_known("AAA");
}
"""
when I build with the fo
--- Additional Comments From ctsa at u dot washington dot edu 2005-02-07
23:12 ---
(In reply to comment #0)
> I'm getting a segfault on what I believe to be valid code using gcc 4.0 but
> not
> when using gcc 3.4 or 3.3. I've reduced this situation down to a relative
map codon_table1(tab_tmp,tab_tmp+tsize);
lup_map::const_iterator s=codon_table1.find(c);
if( s != codon_table1.end() ){
return s->second;
} else {
return 'X';
}
}
main(){
char a = codon_trans_known("AAA");
}
"""
when I build with the fo
trap build for gcc 3.4.3 and 3.3.5
Product: gcc
Version: 3.4.3
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bootstrap
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: ctsa at u dot washington dot edu