diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1992-07-09 01:17:16 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1992-07-09 01:17:16 +0000 |
commit | c724abee0062bdaaf5a2f5e6a2c6a5823baeca51 (patch) | |
tree | 74d2a74df887f1e9423efd09a95ef74d5cdce6b2 /gcc | |
parent | 07c5ab5508e73983ce2157a948ab8152b272fbb4 (diff) | |
download | gcc-c724abee0062bdaaf5a2f5e6a2c6a5823baeca51.zip gcc-c724abee0062bdaaf5a2f5e6a2c6a5823baeca51.tar.gz gcc-c724abee0062bdaaf5a2f5e6a2c6a5823baeca51.tar.bz2 |
Fix call to build_int_2 to have 2 arguments.
From-SVN: r1536
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/objc/objc-act.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 888716f..d155cb5 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); |