This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/14763] [3.3/3.4/3.5 Regression] internal compiler error: in find_function_data, at function.c:320


------- Additional Comments From bangerth at dealii dot org  2004-03-29 05:15 -------
This is significantly shorter: 
----------------- 
struct A { 
    int get() const {} 
    static A *foo(); 
}; 
 
template<bool> struct S { 
    S(unsigned int = A::foo()->get())  ; 
}; 
 
void foo() throw() { 
  S<false> f; 
} 
--------------------------- 
g/x> /home/bangerth/bin/gcc-3.3.4-pre/bin/c++ -c x.cc 
x.cc: In function `void foo()': 
x.cc:11: internal compiler error: in find_function_data, at function.c:313 
Please submit a full bug report, 
 
W. 

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14763


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]