Commit c724abee by Michael Meissner

Fix call to build_int_2 to have 2 arguments.

From-SVN: r1536
parent 07c5ab55
...@@ -2148,7 +2148,7 @@ build_shared_structure_initializer (isa, super, name, size, status, ...@@ -2148,7 +2148,7 @@ build_shared_structure_initializer (isa, super, name, size, status,
initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist); initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist);
/* info = */ /* info = */
initlist = tree_cons (NULLT, build_int_2 (status), initlist); initlist = tree_cons (NULLT, build_int_2 (status, 0), initlist);
/* instance_size = */ /* instance_size = */
initlist = tree_cons (NULLT, size, initlist); initlist = tree_cons (NULLT, size, initlist);
......
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