aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Brodkin <abrodkin@synopsys.com>2024-08-20 15:10:37 +0300
committerJeff Johnston <jjohnstn@redhat.com>2024-08-20 18:21:52 -0400
commitd7d4fe4f4a9c3efbe6d243c3a6e578053cb1b80f (patch)
tree0a80d0e4c1f0ab33f953470c932c879c8a8a8a98
parentc3561210ed9eeb7e45b0a212d971645086fec8ff (diff)
downloadnewlib-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>
-rw-r--r--libgloss/arc/crt0.S2
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