projects
/
platform
/
upstream
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83fe861
)
* read.c (s_lcomm): Align lcomm data.
author
Steve Chamberlain
<sac@cygnus>
Mon, 31 Jan 1994 15:28:06 +0000
(15:28 +0000)
committer
Steve Chamberlain
<sac@cygnus>
Mon, 31 Jan 1994 15:28:06 +0000
(15:28 +0000)
* config/tc-z8k.c (tc_reloc_mangle): Don't allow subtraction
from different sections.
gas/read.c
patch
|
blob
|
history
diff --git
a/gas/read.c
b/gas/read.c
index
817b428
..
3dcb9db
100644
(file)
--- a/
gas/read.c
+++ b/
gas/read.c
@@
-1090,6
+1090,18
@@
s_lcomm (needs_align)
}
#endif
#endif
+ if (!needs_align)
+ {
+ /* FIXME. This needs to be machine independent. */
+ if (temp >= 4)
+ align = 2;
+ else if (temp >= 2)
+ align = 1;
+ else
+ align = temp;
+
+ record_alignment(bss_seg, align);
+ }
if (needs_align)
{