diff --git a/CMSIS/Core/Include/cmsis_compiler.h b/CMSIS/Core/Include/cmsis_compiler.h index 82c90b32e..42adf8011 100644 --- a/CMSIS/Core/Include/cmsis_compiler.h +++ b/CMSIS/Core/Include/cmsis_compiler.h @@ -2,7 +2,7 @@ * @file cmsis_compiler.h * @brief CMSIS compiler generic header file * @version V6.0.0 - * @date 27. July 2023 + * @date 23. November 2023 ******************************************************************************/ /* * Copyright (c) 2009-2023 Arm Limited. All rights reserved. @@ -168,7 +168,7 @@ #define __COMPILER_BARRIER() (void)0 #endif #ifndef __NO_INIT - #define __NO_INIT __attribute__ ((section (".bss.noinit"))) + #define __NO_INIT __attribute__ ((section (".noinit"))) #endif #ifndef __ALIAS #define __ALIAS(x) __attribute__ ((alias(x))) @@ -246,7 +246,7 @@ #define __COMPILER_BARRIER() (void)0 #endif #ifndef __NO_INIT - #define __NO_INIT __attribute__ ((section (".bss.noinit"))) + #define __NO_INIT __attribute__ ((section (".noinit"))) #endif #ifndef __ALIAS #define __ALIAS(x) __attribute__ ((alias(x))) @@ -323,7 +323,7 @@ #define __COMPILER_BARRIER() (void)0 #endif #ifndef __NO_INIT - #define __NO_INIT __attribute__ ((section (".bss.noinit"))) + #define __NO_INIT __attribute__ ((section (".noinit"))) #endif #ifndef __ALIAS #define __ALIAS(x) __attribute__ ((alias(x))) diff --git a/CMSIS/Core/Include/m-profile/cmsis_armclang_m.h b/CMSIS/Core/Include/m-profile/cmsis_armclang_m.h index 84bd6faf4..5550de1e3 100644 --- a/CMSIS/Core/Include/m-profile/cmsis_armclang_m.h +++ b/CMSIS/Core/Include/m-profile/cmsis_armclang_m.h @@ -2,7 +2,7 @@ * @file cmsis_armclang_m.h * @brief CMSIS compiler armclang (Arm Compiler 6) header file * @version V6.0.0 - * @date 27. July 2023 + * @date 23. November 2023 ******************************************************************************/ /* * Copyright (c) 2009-2023 Arm Limited. All rights reserved. @@ -102,7 +102,7 @@ #define __COMPILER_BARRIER() __ASM volatile("":::"memory") #endif #ifndef __NO_INIT - #define __NO_INIT __attribute__ ((section (".bss.noinit"))) + #define __NO_INIT __attribute__ ((section (".noinit"))) #endif #ifndef __ALIAS #define __ALIAS(x) __attribute__ ((alias(x))) diff --git a/CMSIS/Core/Include/m-profile/cmsis_clang_m.h b/CMSIS/Core/Include/m-profile/cmsis_clang_m.h index 48600ee1a..1e3c6614c 100644 --- a/CMSIS/Core/Include/m-profile/cmsis_clang_m.h +++ b/CMSIS/Core/Include/m-profile/cmsis_clang_m.h @@ -2,7 +2,7 @@ * @file cmsis_clang_m.h * @brief CMSIS compiler LLVM/Clang header file * @version V1.1.0 - * @date 27. July 2023 + * @date 23. November 2023 ******************************************************************************/ /* * Copyright (c) 2009-2023 Arm Limited. All rights reserved. @@ -107,7 +107,7 @@ #define __COMPILER_BARRIER() __ASM volatile("":::"memory") #endif #ifndef __NO_INIT - #define __NO_INIT __attribute__ ((section (".bss.noinit"))) + #define __NO_INIT __attribute__ ((section (".noinit"))) #endif #ifndef __ALIAS #define __ALIAS(x) __attribute__ ((alias(x))) diff --git a/CMSIS/Core/Include/m-profile/cmsis_gcc_m.h b/CMSIS/Core/Include/m-profile/cmsis_gcc_m.h index 398cfb9b9..179fda7a7 100644 --- a/CMSIS/Core/Include/m-profile/cmsis_gcc_m.h +++ b/CMSIS/Core/Include/m-profile/cmsis_gcc_m.h @@ -2,7 +2,7 @@ * @file cmsis_gcc_m.h * @brief CMSIS compiler GCC header file * @version V6.0.1 - * @date 11. October 2023 + * @date 23. November 2023 ******************************************************************************/ /* * Copyright (c) 2009-2023 Arm Limited. All rights reserved. @@ -111,7 +111,7 @@ #define __COMPILER_BARRIER() __ASM volatile("":::"memory") #endif #ifndef __NO_INIT - #define __NO_INIT __attribute__ ((section (".bss.noinit"))) + #define __NO_INIT __attribute__ ((section (".noinit"))) #endif #ifndef __ALIAS #define __ALIAS(x) __attribute__ ((alias(x))) diff --git a/CMSIS/Core/Include/m-profile/cmsis_tiarmclang_m.h b/CMSIS/Core/Include/m-profile/cmsis_tiarmclang_m.h index 1230a2f78..9cfe44c72 100644 --- a/CMSIS/Core/Include/m-profile/cmsis_tiarmclang_m.h +++ b/CMSIS/Core/Include/m-profile/cmsis_tiarmclang_m.h @@ -2,7 +2,7 @@ * @file cmsis_tiarmclang_m.h * @brief CMSIS compiler tiarmclang header file * @version V1.1.0 - * @date 27. July 2023 + * @date 23. November 2023 ******************************************************************************/ /* * Copyright (c) 2023 Arm Limited. All rights reserved. @@ -102,7 +102,7 @@ #define __COMPILER_BARRIER() __ASM volatile("":::"memory") #endif #ifndef __NO_INIT - #define __NO_INIT __attribute__ ((section (".bss.noinit"))) + #define __NO_INIT __attribute__ ((section (".noinit"))) #endif #ifndef __ALIAS #define __ALIAS(x) __attribute__ ((alias(x)))