aboutsummaryrefslogtreecommitdiff
path: root/jerry-core/jrt/jrt.h
diff options
context:
space:
mode:
Diffstat (limited to 'jerry-core/jrt/jrt.h')
-rw-r--r--jerry-core/jrt/jrt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jerry-core/jrt/jrt.h b/jerry-core/jrt/jrt.h
index 973d4fc3..2c1f308d 100644
--- a/jerry-core/jrt/jrt.h
+++ b/jerry-core/jrt/jrt.h
@@ -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() \