Skip to content

Commit 2f537e2

Browse files
committed
Drop JERRY_FEATURE_CPOINTER_32_BIT
JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo [email protected]
1 parent b3fa5e0 commit 2f537e2

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

docs/02.API-REFERENCE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ this value can only be returned by the [jerry_error_type](#jerry_error_type).
146146

147147
Possible compile time enabled feature types:
148148

149-
- JERRY_FEATURE_CPOINTER_32_BIT - 32 bit compressed pointers
150149
- JERRY_FEATURE_ERROR_MESSAGES - error messages
151150
- JERRY_FEATURE_JS_PARSER - js-parser
152151
- JERRY_FEATURE_HEAP_STATS - memory statistics

jerry-core/api/jerryscript.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1693,9 +1693,6 @@ jerry_feature_enabled (const jerry_feature_t feature) /**< feature to check */
16931693
JERRY_ASSERT (feature < JERRY_FEATURE__COUNT);
16941694

16951695
return (false
1696-
#if JERRY_CPOINTER_32_BIT
1697-
|| feature == JERRY_FEATURE_CPOINTER_32_BIT
1698-
#endif /* JERRY_CPOINTER_32_BIT */
16991696
#if JERRY_ERROR_MESSAGES
17001697
|| feature == JERRY_FEATURE_ERROR_MESSAGES
17011698
#endif /* JERRY_ERROR_MESSAGES */

jerry-core/include/jerryscript-types.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ typedef enum
7474
*/
7575
typedef enum
7676
{
77-
JERRY_FEATURE_CPOINTER_32_BIT, /**< 32 bit compressed pointers */
7877
JERRY_FEATURE_ERROR_MESSAGES, /**< error messages */
7978
JERRY_FEATURE_JS_PARSER, /**< js-parser */
8079
JERRY_FEATURE_HEAP_STATS, /**< memory statistics */

0 commit comments

Comments
 (0)