Commit 4a7f1935 by Per Bothner Committed by Per Bothner

* decl.c (init_decl_processing): Initialize sizetype properly.

From-SVN: r32328
parent c6491210
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.
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment