diff options
author | Jakub Jelinek <jakub@redhat.com> | 2002-01-06 21:21:03 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2002-01-06 21:21:03 +0100 |
commit | 58ad89b1a56e09f1ac7e0f7fc59390c32e1fe246 (patch) | |
tree | f76d1cb5c4cd40c579d1d6bd19c739a1b1724329 /gcc/objc | |
parent | e403b4bcfe393983d2d5b8614cd65a18e334c38c (diff) | |
download | gcc-58ad89b1a56e09f1ac7e0f7fc59390c32e1fe246.zip gcc-58ad89b1a56e09f1ac7e0f7fc59390c32e1fe246.tar.gz gcc-58ad89b1a56e09f1ac7e0f7fc59390c32e1fe246.tar.bz2 |
objc-act.c (handle_impent): Use assemble_variable to emit __objc_class_name_*.
* objc/objc-act.c (handle_impent): Use assemble_variable to emit
__objc_class_name_*.
From-SVN: r48584
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 9d4469b..5538a21 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -8357,14 +8357,23 @@ handle_impent (impent) ASM_DECLARE_CLASS_REFERENCE (asm_out_file, string); return; } + else #endif + { + tree decl, init; - /* (Should this be a routine in varasm.c?) */ - readonly_data_section (); - assemble_global (string); - assemble_align (UNITS_PER_WORD); - assemble_label (string); - assemble_zeros (UNITS_PER_WORD); + init = build_int_2 (0, 0); + TREE_TYPE (init) = type_for_size (BITS_PER_WORD, 1); + decl = build_decl (VAR_DECL, get_identifier (string), TREE_TYPE (init)); + TREE_PUBLIC (decl) = 1; + TREE_READONLY (decl) = 1; + TREE_USED (decl) = 1; + TREE_CONSTANT (decl) = 1; + DECL_CONTEXT (decl) = 0; + DECL_ARTIFICIAL (decl) = 1; + DECL_INITIAL (decl) = init; + assemble_variable (decl, 1, 0, 0); + } } static void |