diff options
author | Vladimir N. Makarov <vmakarov@cygnus.com> | 1999-01-21 11:20:09 +0000 |
---|---|---|
committer | Vladimir Makarov <vmakarov@gcc.gnu.org> | 1999-01-21 11:20:09 +0000 |
commit | 0003feb203c94e5ed853432b8c8be9079761244e (patch) | |
tree | f114752156844ccab9b23e5e93c21da5cfb7268f /gcc/varasm.c | |
parent | 7fcbfb22d5ed702003945f2b4662ccf30e99a8a3 (diff) | |
download | gcc-0003feb203c94e5ed853432b8c8be9079761244e.zip gcc-0003feb203c94e5ed853432b8c8be9079761244e.tar.gz gcc-0003feb203c94e5ed853432b8c8be9079761244e.tar.bz2 |
varasm.c (output_constant_pool): Use floor_log2 instead of exact_log2 for ASM_OUTPUT_ALIGN.
Thu Jan 21 14:13:31 1999 Vladimir N. Makarov <vmakarov@cygnus.com>
* varasm.c (output_constant_pool): Use floor_log2 instead of
exact_log2 for ASM_OUTPUT_ALIGN.
* stor-layout.c (layout_type): Do machine-dependent extra alignment.
* emit-rtl.c (operand_subword): Handle case when a subword outside
the operand.
* tm.texi (ROUND_TYPE_{SIZE,ALIGN}): More accurate descriptions of
the macros.
From-SVN: r24800
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 748d0cb..9fad6eb 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -3634,7 +3634,7 @@ output_constant_pool (fnname, fndecl) #endif if (pool->align > 1) - ASM_OUTPUT_ALIGN (asm_out_file, exact_log2 (pool->align)); + ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (pool->align)); /* Output the label. */ ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", pool->labelno); |