diff --git a/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py b/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py index de8ea4d0f70b..8d2b9d31a3c3 100755 --- a/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py +++ b/compiler-rt/lib/sanitizer_common/scripts/gen_dynamic_list.py @@ -25,9 +25,10 @@ new_delete = set(['_ZdaPv', '_ZdaPvRKSt9nothrow_t', '_Znwm', '_ZnwmRKSt9nothrow_t']) versioned_functions = set(['memcpy', 'pthread_cond_broadcast', - 'pthread_cond_destroy', 'pthread_cond_signal', - 'pthread_cond_timedwait', 'pthread_cond_wait', - 'realpath', 'sched_getaffinity']) + 'pthread_cond_destroy', 'pthread_cond_init', + 'pthread_cond_signal', 'pthread_cond_timedwait', + 'pthread_cond_wait', 'realpath', + 'sched_getaffinity']) def get_global_functions(library): functions = []