Undo patch from Nov/11/99 to init.c regarding misalignment of
authorDiego Novillo <dnovillo@cygnus.com>
Fri, 12 Nov 1999 17:45:10 +0000 (17:45 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Fri, 12 Nov 1999 17:45:10 +0000 (12:45 -0500)
cookie header for arrays of objects.

From-SVN: r30505

gcc/cp/ChangeLog
gcc/cp/init.c

index c37c04e9cbdb3083d67137c5af8a90f4ead5577b..646c6e3a8ddbc2618b4e2f28778e906fa8efee67 100644 (file)
@@ -1,3 +1,8 @@
+Fri Nov 12 10:42:02 MST 1999   Diego Novillo <dnovillo@cygnus.com>
+
+       * init.c (init_init_processing): Undo patch from Nov 11, 1999.
+       Patch had not been approved yet.
+
 1999-11-12  Mark Mitchell  <mark@codesourcery.com>
 
        * decl.c (compute_array_index_type): New function, split out from
index c44926ded1839097f97b8f0992c9d27d322bcada..07c45f46cb6912aaf30ea3a912ca535a29d18bc9 100644 (file)
@@ -66,9 +66,8 @@ void init_init_processing ()
   BI_header_type = make_lang_type (RECORD_TYPE);
   nelts_identifier = get_identifier ("nelts");
   fields[0] = build_lang_decl (FIELD_DECL, nelts_identifier, sizetype);
-  TYPE_ALIGN (BI_header_type) = BIGGEST_ALIGNMENT;
   finish_builtin_type (BI_header_type, "__new_cookie", fields,
-                      0, BI_header_type);
+                      0, double_type_node);
   BI_header_size = size_in_bytes (BI_header_type);
 
   ggc_add_tree_root (&BI_header_type, 1);