PR target/56564
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Jun 2013 06:03:46 +0000 (06:03 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Jun 2013 06:03:46 +0000 (06:03 +0000)
* varasm.c (get_variable_align): Move #endif to the right place.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@199934 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/varasm.c

index 703428a..903a79c 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 cd0235f..5639531 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;
 }