Comments
Patch
@@ -1443,7 +1443,7 @@ expand_default_init (tree binfo, tree true_exp, tree exp, tree init, int flags,
if (exp == true_exp && TREE_CODE (rval) == CALL_EXPR)
{
tree fn = get_callee_fndecl (rval);
- if (DECL_DECLARED_CONSTEXPR_P (fn))
+ if (fn && DECL_DECLARED_CONSTEXPR_P (fn))
{
tree e = maybe_constant_value (rval);
if (TREE_CONSTANT (e))
new file mode 100644
@@ -0,0 +1,16 @@
+// PR c++/46277
+
+class ggRGBE {
+public:
+ ggRGBE();
+};
+template <class T> class ggIO
+{
+ void readbody(int);
+ ggRGBE *scanline;
+};
+template <class T> void
+ggIO<T>::readbody(int width)
+{
+ scanline = new ggRGBE[width];
+}
I'm a little concerned that we can't figure out which function is being called in this case, since it isn't actually type-dependent, but since this isn't in a constant expression it doesn't really matter. Tested x86_64-pc-linux-gnu, applied to trunk. commit 7d13a58f7e3d2e0fa70c58cab5bb73b206998c00 Author: Jason Merrill <jason@redhat.com> Date: Wed Nov 3 01:04:24 2010 -0400 PR c++/46277 * init.c (expand_default_init): Avoid ICE if we can't figure out which function is being called.