You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[cling] Move static init function renaming to BackendPasses.cpp
This moves the logic for making static initialization function names
unique to `BackendPasses.cpp`
Functionality remains the same as introduced in commit
d84ee9c. The only difference being
the the names are suffixed with numbering (_1, _2, etc.) before the
module suffix:
__cxx_global_var_initcling_module_27_
__cxx_global_var_init_1cling_module_27_
__cxx_global_var_init_2cling_module_27_
__cxx_global_var_init_3cling_module_27_
instead of
__cxx_global_var_initcling_module_27_
__cxx_global_var_initcling_module_27__1
__cxx_global_var_initcling_module_27__2
__cxx_global_var_initcling_module_27__3
0 commit comments