From b850b34bccbb39185a124e7e75aa44e1aae0b00a Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Thu, 6 Jan 2022 14:38:19 +0200 Subject: [PATCH] build: reduce inline threshold on aarch64 to 300 We see coroutine miscompiles with 600. Fixes #9881. Closes #9883 --- configure.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 7cd48e693b..c62e5e554d 100755 --- a/configure.py +++ b/configure.py @@ -1338,7 +1338,8 @@ def clang_inline_threshold(): return args.clang_inline_threshold elif platform.machine() == 'aarch64': # we see miscompiles with 1200 and above with format("{}", uuid) - return 600 + # also coroutine miscompiles with 600 + return 300 else: return 2500