From 5ca845ff69b6312786b9cef12100adf01ef8de11 Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH] arm/armv8-m: remove duplicate .globl for up_saveusercontext The up_saveusercontext symbol was declared with .globl twice in a row. The .globl directive is idempotent, so the duplicate line has no effect on the generated object; drop it to match the single declaration used by the other .S files in this directory. Signed-off-by: Junbo Zheng --- arch/arm/src/armv8-m/arm_saveusercontext.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/src/armv8-m/arm_saveusercontext.S b/arch/arm/src/armv8-m/arm_saveusercontext.S index 5b49df6aac5..68f1b0fdbd5 100644 --- a/arch/arm/src/armv8-m/arm_saveusercontext.S +++ b/arch/arm/src/armv8-m/arm_saveusercontext.S @@ -52,7 +52,6 @@ * ****************************************************************************/ - .globl up_saveusercontext .globl up_saveusercontext .type up_saveusercontext, %function