Skip to content

Commit c5c3a0d

Browse files
committed
Add missing builtins needed by optimizations
1 parent ec97ce2 commit c5c3a0d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

gcc/jit/jit-builtins.cc

+3
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,9 @@ builtins_manager::ensure_optimization_builtins_exist ()
611611
We can't loop through all of the builtin_data array, we don't
612612
support all types yet. */
613613
(void)get_builtin_function_by_id (BUILT_IN_TRAP);
614+
(void)get_builtin_function_by_id (BUILT_IN_POPCOUNT);
615+
(void)get_builtin_function_by_id (BUILT_IN_POPCOUNTL);
616+
(void)get_builtin_function_by_id (BUILT_IN_POPCOUNTLL);
614617
}
615618

616619
/* Playback support. */

0 commit comments

Comments
 (0)