projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24e5074
)
re PR target/56564 (movdqa on possibly-8-byte-aligned struct with -O3)
author
Jakub Jelinek
<jakub@redhat.com>
Tue, 11 Jun 2013 06:03:46 +0000
(08:03 +0200)
committer
Jakub 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
patch
|
blob
|
history
gcc/varasm.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 703428af0cfb8a273521b885d64f6f4dbfc4584a..903a79c89a9fcba05fc00b40c25cedc5cc213ab6 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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
diff --git
a/gcc/varasm.c
b/gcc/varasm.c
index cd0235fa4510de461ac61e16d91495ce5ab04efe..563953104aa0db2fec0d9754e0b9113e61725cb4 100644
(file)
--- 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;
}