Update clang-format (#5112)
Bump minimum clang-format version to 15 (the previously used 10 is not in the ubuntu-22.04 repo) Reformat several files Re-enable format and strings CI checkers JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi mate.tokodi@szteszoftver.hu
This commit is contained in:
@@ -92,7 +92,6 @@ typedef struct
|
||||
bool class_found;
|
||||
} snapshot_globals_t;
|
||||
|
||||
|
||||
/**
|
||||
* Write data into the specified buffer.
|
||||
*
|
||||
|
||||
@@ -261,8 +261,7 @@ ecma_value_t ecma_builtin_helper_error_dispatch_call (jerry_error_t error_type,
|
||||
typedef ecma_value_t (*ecma_builtin_helper_sort_compare_fn_t) (ecma_value_t lhs, /**< left value */
|
||||
ecma_value_t rhs, /**< right value */
|
||||
ecma_value_t compare_func, /**< compare function */
|
||||
ecma_object_t *array_buffer_p /**< arrayBuffer */
|
||||
);
|
||||
ecma_object_t *array_buffer_p /**< arrayBuffer */);
|
||||
|
||||
ecma_value_t ecma_builtin_helper_array_merge_sort_helper (ecma_value_t *array_p,
|
||||
uint32_t length,
|
||||
|
||||
@@ -1850,9 +1850,9 @@ ecma_op_object_get_own_property_descriptor (ecma_object_t *object_p, /**< the ob
|
||||
prop_desc_p->value = property_ref.virtual_value;
|
||||
}
|
||||
|
||||
prop_desc_p->flags |= (JERRY_PROP_IS_VALUE_DEFINED | JERRY_PROP_IS_WRITABLE_DEFINED);
|
||||
prop_desc_p->flags = (uint16_t) (
|
||||
prop_desc_p->flags | (ecma_is_property_writable (property) ? JERRY_PROP_IS_WRITABLE : JERRY_PROP_NO_OPTS));
|
||||
prop_desc_p->flags |=
|
||||
(uint16_t) (JERRY_PROP_IS_VALUE_DEFINED | JERRY_PROP_IS_WRITABLE_DEFINED
|
||||
| (ecma_is_property_writable (property) ? JERRY_PROP_IS_WRITABLE : JERRY_PROP_NO_OPTS));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -64,9 +64,9 @@ JERRY_C_API_BEGIN
|
||||
/*
|
||||
* Compiler-specific macros relevant for Microsoft Visual C/C++ Compiler.
|
||||
*/
|
||||
#define JERRY_ATTR_DEPRECATED __declspec(deprecated)
|
||||
#define JERRY_ATTR_NOINLINE __declspec(noinline)
|
||||
#define JERRY_ATTR_NORETURN __declspec(noreturn)
|
||||
#define JERRY_ATTR_DEPRECATED __declspec (deprecated)
|
||||
#define JERRY_ATTR_NOINLINE __declspec (noinline)
|
||||
#define JERRY_ATTR_NORETURN __declspec (noreturn)
|
||||
|
||||
/*
|
||||
* Microsoft Visual C/C++ Compiler doesn't support for VLA, using _alloca
|
||||
|
||||
@@ -217,7 +217,7 @@ void jerry_jrt_set_log_level (jerry_log_level_t level);
|
||||
*/
|
||||
#if defined(__clang__) || defined(__GNUC__)
|
||||
/* Clang/GCC will not tail call given inline volatile assembly. */
|
||||
#define JERRY_BLOCK_TAIL_CALL_OPTIMIZATION() __asm__ __volatile__("")
|
||||
#define JERRY_BLOCK_TAIL_CALL_OPTIMIZATION() __asm__ __volatile__ ("")
|
||||
#else /* !defined(__clang__) && !defined(__GNUC__) */
|
||||
/* On GCC 10.x this version also works. */
|
||||
#define JERRY_BLOCK_TAIL_CALL_OPTIMIZATION() \
|
||||
|
||||
Reference in New Issue
Block a user