diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-01 22:47:09 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-01 22:47:09 +0000 |
commit | 4aa1f91ca0a523e374516456a8d0f69ddfb9fa25 (patch) | |
tree | e7dcf7ca57c25d98e9dbecc49bb47eb7bf8bdf08 /gcc/except.c | |
parent | 3612e6356f2cfa8827d0d1674034b8717f58926c (diff) | |
download | gcc-4aa1f91ca0a523e374516456a8d0f69ddfb9fa25.tar.gz |
* except.c (output_function_exception_table): Use assemble_align.
* varasm.c (assemble_eh_label): Remove.
(assemble_eh_align, assemble_eh_integer): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44561 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c index c7f5595e550..e24a901c3c4 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -3500,7 +3500,7 @@ output_function_exception_table () #endif tt_format_size = size_of_encoded_value (tt_format); - assemble_eh_align (tt_format_size * BITS_PER_UNIT); + assemble_align (tt_format_size * BITS_PER_UNIT); } ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LLSDA", funcdef_number); @@ -3607,7 +3607,7 @@ output_function_exception_table () (i ? NULL : "Action record table")); if (have_tt_data) - assemble_eh_align (tt_format_size * BITS_PER_UNIT); + assemble_align (tt_format_size * BITS_PER_UNIT); i = VARRAY_ACTIVE_SIZE (cfun->eh->ttype_data); while (i-- > 0) |