From 9f30e149baafbcd2016c0c91f718f4997e84508f Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Fri, 4 Jun 2021 12:11:22 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14465 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/common/ports/ARMv7-M/compilers/GCC/chtypes.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/os/common/ports/ARMv7-M/compilers/GCC/chtypes.h b/os/common/ports/ARMv7-M/compilers/GCC/chtypes.h index eb2de651d..47ec1210d 100644 --- a/os/common/ports/ARMv7-M/compilers/GCC/chtypes.h +++ b/os/common/ports/ARMv7-M/compilers/GCC/chtypes.h @@ -79,7 +79,6 @@ typedef uint64_t port_stkalign_t; /** * @brief ROM constant modifier. * @note It is set to use the "const" keyword in this port. - * @deprecated */ #define ROMCONST CC_ROMCONST @@ -87,13 +86,11 @@ typedef uint64_t port_stkalign_t; * @brief Makes functions not inlineable. * @note If the compiler does not support such attribute then some * time-dependent services could be degraded. - * @deprecated */ #define NOINLINE CC_NO_INLINE /** * @brief Memory alignment enforcement for variables. - * @deprecated */ #define ALIGNED_VAR(n) CC_ALIGN_DATA(n) @@ -101,7 +98,6 @@ typedef uint64_t port_stkalign_t; * @brief Size of a pointer. * @note To be used where the sizeof operator cannot be used, preprocessor * expressions for example. - * @deprecated */ #define SIZEOF_PTR PORT_ARCH_SIZEOF_DATA_PTR