Skip to content
Snippets Groups Projects
Commit 38b9b744 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: relax .data alignment


The strictest alignment on Blackfin systems is 32bits (since that is the
largest load instruction), so don't force 256byte alignment here.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 03f7053f
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ SECTIONS
.data :
{
. = ALIGN(256);
. = ALIGN(4);
*(.data .data.*)
*(.data1)
*(.sdata)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment