* tree.c (store_parm_decls): Reset immediate_size_expand.
(finish_function): Likewise.
From-SVN: r28912
1999-08-26 Mark Mitchell <mark@codesourcery.com>
+ * tree.c (store_parm_decls): Reset immediate_size_expand.
+ (finish_function): Likewise.
+
* tree.c (cplus_unsave_expr_now): Don't return a value.
* semantics.c (do_poplevel): Always initialize the return value.
--- /dev/null
+// Build don't link:
+// Origin: Mark Mitchell <mark@codesourcery.com>
+// Special g++ Options:
+
+void *vp;
+
+void f ()
+{
+ int i = (*((int (*)[i]) vp))[0];
+}
--- /dev/null
+// Build don't link:
+// Origin: Alfred Minarik <a8601248@unet.univie.ac.at>
+// Special g++ Options:
+
+template<typename _CharT>
+struct basic_filebuf
+{
+ virtual void
+ underflow()
+ {
+ int __size = 5;
+ char __conv_buf[__size];
+ }
+};
+
+template class basic_filebuf<char>;