]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR target/56564 (movdqa on possibly-8-byte-aligned struct with -O3)
authorJakub Jelinek <jakub@redhat.com>
Tue, 11 Jun 2013 06:03:46 +0000 (08:03 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 11 Jun 2013 06:03:46 +0000 (08:03 +0200)
PR target/56564
* varasm.c (get_variable_align): Move #endif to the right place.

From-SVN: r199934

gcc/ChangeLog
gcc/varasm.c

index 703428af0cfb8a273521b885d64f6f4dbfc4584a..903a79c89a9fcba05fc00b40c25cedc5cc213ab6 100644 (file)
@@ -1,3 +1,8 @@
+2013-06-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/56564
+       * varasm.c (get_variable_align): Move #endif to the right place.
+
 2013-06-10  Cary Coutant  <ccoutant@google.com>
 
        * dwarf2out.c (hash_external_ref): Use die_symbol or signature
index cd0235fa4510de461ac61e16d91495ce5ab04efe..563953104aa0db2fec0d9754e0b9113e61725cb4 100644 (file)
@@ -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;
 }