From c724abee0062bdaaf5a2f5e6a2c6a5823baeca51 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Thu, 9 Jul 1992 01:17:16 +0000 Subject: [PATCH] Fix call to build_int_2 to have 2 arguments. From-SVN: r1536 --- gcc/objc/objc-act.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 888716f0b43..d155cb5a029 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -2148,7 +2148,7 @@ build_shared_structure_initializer (isa, super, name, size, status, initlist = tree_cons (NULLT, build_int_2 (0, 0), initlist); /* info = */ - initlist = tree_cons (NULLT, build_int_2 (status), initlist); + initlist = tree_cons (NULLT, build_int_2 (status, 0), initlist); /* instance_size = */ initlist = tree_cons (NULLT, size, initlist);