From 83f9c38ed148a583ef34ea89047dd0e3bdecb37e Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Tue, 29 Dec 2020 00:02:20 -0800 Subject: [PATCH] Completely remove JERRY_ATTR_SECTION (#4383) PR #2903 removed only a part of JERRY_ATTR_SECTION. JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo luoyonggang@gmail.com --- jerry-core/include/jerryscript-compiler.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/jerry-core/include/jerryscript-compiler.h b/jerry-core/include/jerryscript-compiler.h index 22881988b..01c3accdc 100644 --- a/jerry-core/include/jerryscript-compiler.h +++ b/jerry-core/include/jerryscript-compiler.h @@ -136,13 +136,6 @@ void * __cdecl _alloca (size_t _Size); #define JERRY_ATTR_PURE #endif /* !JERRY_ATTR_PURE */ -/** - * Function attribute to place function in given section. - */ -#ifndef JERRY_ATTR_SECTION -#define JERRY_ATTR_SECTION(SECTION) -#endif /* !JERRY_ATTR_SECTION */ - /** * Function attribute to trigger warning if function's caller doesn't use (e.g., * check) the return value.