diff options
author | Alexey Brodkin <abrodkin@synopsys.com> | 2024-08-20 15:10:37 +0300 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2024-08-20 18:21:52 -0400 |
commit | d7d4fe4f4a9c3efbe6d243c3a6e578053cb1b80f (patch) | |
tree | 0a80d0e4c1f0ab33f953470c932c879c8a8a8a98 /libgloss | |
parent | c3561210ed9eeb7e45b0a212d971645086fec8ff (diff) | |
download | newlib-d7d4fe4f4a9c3efbe6d243c3a6e578053cb1b80f.zip newlib-d7d4fe4f4a9c3efbe6d243c3a6e578053cb1b80f.tar.gz newlib-d7d4fe4f4a9c3efbe6d243c3a6e578053cb1b80f.tar.bz2 |
arc: libgloss: Switch from .balign to .align
.align is supported by both GCC & MetaWare compiler for ARC,
yet implements the same semantics as .balign which only works
with GCC.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/arc/crt0.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/arc/crt0.S b/libgloss/arc/crt0.S index 0c2a2bd..36b9c25 100644 --- a/libgloss/arc/crt0.S +++ b/libgloss/arc/crt0.S @@ -276,4 +276,4 @@ _exit_halt: nop #endif b @_exit_halt -.balign 4 +.align 4 |