From 667d892ee02b84874505eae713ef46ebb1ca8afc Mon Sep 17 00:00:00 2001 From: Minseong Jang Date: Sun, 13 Mar 2022 16:17:52 +0900 Subject: [PATCH] Fix fuzzer script --- tests/fuzz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fuzz.py b/tests/fuzz.py index 500fcf2..eea5d74 100644 --- a/tests/fuzz.py +++ b/tests/fuzz.py @@ -42,7 +42,7 @@ REPLACE_DICT = { r"__asm__\s*\([^\)]*\)": "", # asm extension in linux "typedef __builtin_va_list __gnuc_va_list;": "", "typedef __gnuc_va_list va_list;": "", - r"fabsf\(": "(", + r"\(fabsf\(": "((", # todo: need to consider the case below in the future: # avoid compile-time constant expressed as complex expression such as `1 + 1`