forked from Imagelibrary/binutils-gdb
* read.c (s_lcomm): Use an alignment power of 3 for 8 byte .lcomm
variables.
This commit is contained in:
@@ -1103,7 +1103,9 @@ s_lcomm (needs_align)
|
||||
if (!needs_align)
|
||||
{
|
||||
/* FIXME. This needs to be machine independent. */
|
||||
if (temp >= 4)
|
||||
if (temp >= 8)
|
||||
align = 3;
|
||||
else if (temp >= 4)
|
||||
align = 2;
|
||||
else if (temp >= 2)
|
||||
align = 1;
|
||||
|
||||
Reference in New Issue
Block a user