]> gcc.gnu.org Git - gcc.git/commitdiff
* decl.c (init_decl_processing): Initialize sizetype properly.
authorPer Bothner <per@bothner.com>
Sat, 4 Mar 2000 18:27:48 +0000 (10:27 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Sat, 4 Mar 2000 18:27:48 +0000 (10:27 -0800)
From-SVN: r32328

gcc/java/ChangeLog
gcc/java/decl.c

index dcce63b75c494f7b0dbd14d0924e116e0ef4d343..cbb7814fc7f7c6671253fe46e48910db7462d411 100644 (file)
@@ -1,3 +1,7 @@
+2000-03-03  Per Bothner  <per@bothner.com>
+
+       * decl.c (init_decl_processing):  Initialize sizetype properly.
+
 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
 
        * decl.c (current_function_decl): Move to toplev.c.
index cae86f0908af73a2c935942a89ddc4d2235f23ec..f258ed8dc0caf34a978a58e1cd478a7010ac9ee0 100644 (file)
@@ -459,7 +459,8 @@ init_decl_processing ()
   TREE_TYPE (error_mark_node) = error_mark_node;
 
   /* Create sizetype first - needed for other types. */
-  sizetype = make_unsigned_type (POINTER_SIZE);
+  initialize_sizetypes ();
+  set_sizetype (make_unsigned_type (POINTER_SIZE));
   size_zero_node = build_int_2 (0, 0);
   TREE_TYPE (size_zero_node) = sizetype;
   size_one_node = build_int_2 (1, 0);
This page took 0.081195 seconds and 5 git commands to generate.