Fix undefined references build errors on Windows (#3004)

We should emit function symbols for ecma_date_day, ecma_is_value_string and
ecma_number_is_nan inline functions, because they are used by unit tests:
unit-core/test-date-helpers.c, test-literal-storage.c and test-string-to-number.c.

JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác oszi@inf.u-szeged.hu
This commit is contained in:
Csaba Osztrogonác
2019-08-06 13:02:08 +02:00
committed by Dániel Bátyai
parent 9c7511221f
commit 14a9a1a1f0
3 changed files with 3 additions and 3 deletions
@@ -41,7 +41,7 @@
*
* @return time value for day number
*/
inline ecma_number_t JERRY_ATTR_ALWAYS_INLINE
extern inline ecma_number_t JERRY_ATTR_ALWAYS_INLINE
ecma_date_day (ecma_number_t time) /**< time value */
{
JERRY_ASSERT (!ecma_number_is_nan (time));