diff options
author | Jakub Jelinek <jakub@redhat.com> | 2013-06-11 08:03:46 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2013-06-11 08:03:46 +0200 |
commit | 3bc66938e06e05d6b733e80c6f497e62715bb121 (patch) | |
tree | cc2b64a57008edcd685a487549994015d931d960 /gcc/varasm.c | |
parent | 24e5074cc13b4666e1684310509255397df21288 (diff) | |
download | gcc-3bc66938e06e05d6b733e80c6f497e62715bb121.zip gcc-3bc66938e06e05d6b733e80c6f497e62715bb121.tar.gz gcc-3bc66938e06e05d6b733e80c6f497e62715bb121.tar.bz2 |
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
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 cd0235f..5639531 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; } |