From: Jakub Jelinek Date: Tue, 11 Jun 2013 06:03:46 +0000 (+0200) Subject: re PR target/56564 (movdqa on possibly-8-byte-aligned struct with -O3) X-Git-Tag: releases/gcc-4.9.0~5459 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3bc66938e06e05d6b733e80c6f497e62715bb121;p=thirdparty%2Fgcc.git re PR target/56564 (movdqa on possibly-8-byte-aligned struct with -O3) PR target/56564 * varasm.c (get_variable_align): Move #endif to the right place. From-SVN: r199934 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 703428af0cfb..903a79c89a9f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-06-11 Jakub Jelinek + + PR target/56564 + * varasm.c (get_variable_align): Move #endif to the right place. + 2013-06-10 Cary Coutant * dwarf2out.c (hash_external_ref): Use die_symbol or signature diff --git a/gcc/varasm.c b/gcc/varasm.c index cd0235fa4510..563953104aa0 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1053,8 +1053,8 @@ get_variable_align (tree decl) if (! DECL_THREAD_LOCAL_P (decl) || const_align <= BITS_PER_WORD) align = const_align; } - } #endif + } return align; }