From d7d4fe4f4a9c3efbe6d243c3a6e578053cb1b80f Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Tue, 20 Aug 2024 15:10:37 +0300 Subject: [PATCH] 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 --- libgloss/arc/crt0.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgloss/arc/crt0.S b/libgloss/arc/crt0.S index 0c2a2bd26..36b9c250a 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