Fix JERRY_UNIMPLEMENTED_REF_UNUSED_VARS so that call to jerry_unimplemented is placed after if (false) { ... } block.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
This commit is contained in:
@@ -144,11 +144,11 @@ template<typename... values> extern void jerry_ref_unused_variables (const value
|
|||||||
#define JERRY_UNIMPLEMENTED_REF_UNUSED_VARS(comment, ...) \
|
#define JERRY_UNIMPLEMENTED_REF_UNUSED_VARS(comment, ...) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
jerry_unimplemented (comment, __FILE__, __func__, __LINE__); \
|
|
||||||
if (false) \
|
if (false) \
|
||||||
{ \
|
{ \
|
||||||
jerry_ref_unused_variables (0, __VA_ARGS__); \
|
jerry_ref_unused_variables (0, __VA_ARGS__); \
|
||||||
} \
|
} \
|
||||||
|
jerry_unimplemented (comment, __FILE__, __func__, __LINE__); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#else /* !JERRY_NDEBUG */
|
#else /* !JERRY_NDEBUG */
|
||||||
#define JERRY_UNREACHABLE() \
|
#define JERRY_UNREACHABLE() \
|
||||||
@@ -166,11 +166,11 @@ template<typename... values> extern void jerry_ref_unused_variables (const value
|
|||||||
#define JERRY_UNIMPLEMENTED_REF_UNUSED_VARS(comment, ...) \
|
#define JERRY_UNIMPLEMENTED_REF_UNUSED_VARS(comment, ...) \
|
||||||
do \
|
do \
|
||||||
{ \
|
{ \
|
||||||
jerry_unimplemented (comment, NULL, NULL, 0); \
|
|
||||||
if (false) \
|
if (false) \
|
||||||
{ \
|
{ \
|
||||||
jerry_ref_unused_variables (0, __VA_ARGS__); \
|
jerry_ref_unused_variables (0, __VA_ARGS__); \
|
||||||
} \
|
} \
|
||||||
|
jerry_unimplemented (comment, NULL, NULL, 0); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#endif /* JERRY_NDEBUG */
|
#endif /* JERRY_NDEBUG */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user