diff options
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 ff3b45eeeec..76d91f71f2f 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1511,7 +1511,7 @@ assemble_variable (decl, top_level, at_end, dont_output_data) * (BIGGEST_ALIGNMENT / BITS_PER_UNIT)); #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS) - if ( (DECL_ALIGN (decl) / BITS_PER_UNIT) > rounded) + if ((DECL_ALIGN (decl) / BITS_PER_UNIT) > (unsigned int) rounded) warning_with_decl (decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded); #endif |