From d76051787c1a1d8d76ec31e542f992be2ce8314d Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH 1/7] arm/arm: 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/arm/arm_saveusercontext.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/src/arm/arm_saveusercontext.S b/arch/arm/src/arm/arm_saveusercontext.S index 168a03701e8d7..86a43943d7631 100644 --- a/arch/arm/src/arm/arm_saveusercontext.S +++ b/arch/arm/src/arm/arm_saveusercontext.S @@ -52,7 +52,6 @@ * ****************************************************************************/ - .globl up_saveusercontext .globl up_saveusercontext .type up_saveusercontext, %function From 14ca78948827ad576e419dcb64675eb52ab24b87 Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH 2/7] arm/armv6-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/armv6-m/arm_saveusercontext.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/src/armv6-m/arm_saveusercontext.S b/arch/arm/src/armv6-m/arm_saveusercontext.S index c62c4a75de6b7..3fe8288411631 100644 --- a/arch/arm/src/armv6-m/arm_saveusercontext.S +++ b/arch/arm/src/armv6-m/arm_saveusercontext.S @@ -52,7 +52,6 @@ * ****************************************************************************/ - .globl up_saveusercontext .globl up_saveusercontext .type up_saveusercontext, %function From 3f0e34d7f48adb30177427141a7364d0687393ea Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH 3/7] arm/armv7-a: 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/armv7-a/arm_saveusercontext.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/src/armv7-a/arm_saveusercontext.S b/arch/arm/src/armv7-a/arm_saveusercontext.S index 52c2aec7da3a5..878d2059735f0 100644 --- a/arch/arm/src/armv7-a/arm_saveusercontext.S +++ b/arch/arm/src/armv7-a/arm_saveusercontext.S @@ -52,7 +52,6 @@ * ****************************************************************************/ - .globl up_saveusercontext .globl up_saveusercontext .type up_saveusercontext, %function From 62d299d66178072590c71b6297f2c940c2bcdd3e Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH 4/7] arm/armv7-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/armv7-m/arm_saveusercontext.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/src/armv7-m/arm_saveusercontext.S b/arch/arm/src/armv7-m/arm_saveusercontext.S index 52e2af3e31a01..e8415e15345ab 100644 --- a/arch/arm/src/armv7-m/arm_saveusercontext.S +++ b/arch/arm/src/armv7-m/arm_saveusercontext.S @@ -57,7 +57,6 @@ ****************************************************************************/ .globl up_saveusercontext - .globl up_saveusercontext #ifdef __ghs__ .type up_saveusercontext, $function #else From 5796c22b93b3e353e6b887616d9e1a8375196759 Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH 5/7] arm/armv7-r: 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/armv7-r/arm_saveusercontext.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/src/armv7-r/arm_saveusercontext.S b/arch/arm/src/armv7-r/arm_saveusercontext.S index b171c0cdf6ad1..41620a3f2f8d0 100644 --- a/arch/arm/src/armv7-r/arm_saveusercontext.S +++ b/arch/arm/src/armv7-r/arm_saveusercontext.S @@ -52,7 +52,6 @@ * ****************************************************************************/ - .globl up_saveusercontext .globl up_saveusercontext .type up_saveusercontext, %function From e24cb60f17db6faa0facf9f05ac658f4b7eab5f2 Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH 6/7] 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 5b49df6aac52b..68f1b0fdbd569 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 From b47bb31856801c84569955aa5f661efc9391b5bb Mon Sep 17 00:00:00 2001 From: Junbo Zheng Date: Fri, 26 Jun 2026 11:29:36 +0800 Subject: [PATCH 7/7] arm/armv8-r: 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-r/arm_saveusercontext.S | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/src/armv8-r/arm_saveusercontext.S b/arch/arm/src/armv8-r/arm_saveusercontext.S index 6854d79397f49..c3678e01dcff5 100644 --- a/arch/arm/src/armv8-r/arm_saveusercontext.S +++ b/arch/arm/src/armv8-r/arm_saveusercontext.S @@ -55,7 +55,6 @@ ****************************************************************************/ .globl up_saveusercontext - .globl up_saveusercontext #ifdef __ghs__ .type up_saveusercontext, $function #else