diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-01 15:47:09 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-01 15:47:09 -0700 |
commit | 7a900ebc50d0b561682cdb63fd94a674392d05ff (patch) | |
tree | e7dcf7ca57c25d98e9dbecc49bb47eb7bf8bdf08 /gcc/except.c | |
parent | 551e8a74ea0b70f44b64d0b3d5702d952a188bed (diff) | |
download | gcc-7a900ebc50d0b561682cdb63fd94a674392d05ff.zip gcc-7a900ebc50d0b561682cdb63fd94a674392d05ff.tar.gz gcc-7a900ebc50d0b561682cdb63fd94a674392d05ff.tar.bz2 |
except.c (output_function_exception_table): Use assemble_align.
* except.c (output_function_exception_table): Use assemble_align.
* varasm.c (assemble_eh_label): Remove.
(assemble_eh_align, assemble_eh_integer): Remove.
From-SVN: r44561
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 c7f5595..e24a901 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) |