[Bug tree-optimization/41740] [4.5 Regression] ICE in ipcp_analyze_node, at ipa-cp.c:183
rguenth at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sun Oct 18 14:37:00 GMT 2009
------- Comment #6 from rguenth at gcc dot gnu dot org 2009-10-18 14:37 -------
namespace std {
template<typename _CharT> class basic_ostream;
typedef basic_ostream<char> ostream;
extern ostream cerr;
};
class Affine_Space
{
void print() const;
};
std::ostream& operator<<(std::ostream& s, const Affine_Space& gr);
void Affine_Space::print() const
{
std::cerr << *this;
}
std::ostream&
operator<<(std::ostream& s, const Affine_Space& gr)
{
s << gr;
return s;
}
--
rguenth at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mjambor at suse dot cz
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
Last reconfirmed|0000-00-00 00:00:00 |2009-10-18 14:37:25
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41740
More information about the Gcc-bugs
mailing list