File tree Expand file tree Collapse file tree 5 files changed +0
-28
lines changed Expand file tree Collapse file tree 5 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -227,22 +227,6 @@ static GTY(()) tree ix86_builtins[(int) IX86_BUILTIN_MAX + 1];
227227
228228struct builtin_isa ix86_builtins_isa[(int ) IX86_BUILTIN_MAX];
229229
230- void
231- ix86_cleanup_builtins (void )
232- {
233- for (int i = 0 ; i < IX86_BT_LAST_CPTR + 1 ; i++)
234- ix86_builtin_type_tab[i] = NULL ;
235-
236- for (int i = 0 ; i < IX86_BUILTIN_MAX ; i++)
237- {
238- ix86_builtins[i] = NULL ;
239- ix86_builtins_isa[i].set_and_not_built_p = true ;
240- }
241-
242- for (int i = 0 ; i < IX86_BT_LAST_ALIAS + 1 ; i++)
243- ix86_builtin_func_type_tab[i] = NULL ;
244- }
245-
246230tree get_ix86_builtin (enum ix86_builtins c)
247231{
248232 return ix86_builtins[c];
Original file line number Diff line number Diff line change @@ -318,7 +318,6 @@ extern builtin_isa ix86_builtins_isa[(int) IX86_BUILTIN_MAX];
318318tree ix86_builtin_vectorized_function (unsigned int fn , tree type_out ,
319319 tree type_in );
320320void ix86_init_builtins (void );
321- void ix86_cleanup_builtins (void );
322321tree ix86_vectorize_builtin_gather (const_tree mem_vectype ,
323322 const_tree index_type , int scale );
324323tree ix86_builtin_decl (unsigned code , bool );
Original file line number Diff line number Diff line change @@ -26538,8 +26538,6 @@ static const scoped_attribute_specs *const ix86_attribute_table[] =
2653826538
2653926539#undef TARGET_INIT_BUILTINS
2654026540#define TARGET_INIT_BUILTINS ix86_init_builtins
26541- #undef TARGET_CLEANUP_BUILTINS
26542- #define TARGET_CLEANUP_BUILTINS ix86_cleanup_builtins
2654326541#undef TARGET_BUILTIN_DECL
2654426542#define TARGET_BUILTIN_DECL ix86_builtin_decl
2654526543#undef TARGET_EXPAND_BUILTIN
Original file line number Diff line number Diff line change @@ -12112,13 +12112,6 @@ only language front ends that use those two functions will call
1211212112@samp{TARGET_INIT_BUILTINS}.
1211312113@end deftypefn
1211412114
12115- @deftypefn {Target Hook} void TARGET_CLEANUP_BUILTINS (void)
12116- Define this hook if you have any machine-specific built-in functions
12117- that need to be cleaned up. It should be a function that performs the
12118- necessary cleanup so that a second compilation in the same process via
12119- the jit frontend will not fail.
12120- @end deftypefn
12121-
1212212115@deftypefn {Target Hook} tree TARGET_BUILTIN_DECL (unsigned @var{code}, bool @var{initialize_p})
1212312116Define this hook if you have any machine-specific built-in functions
1212412117that need to be defined. It should be a function that returns the
Original file line number Diff line number Diff line change @@ -7868,8 +7868,6 @@ to by @var{ce_info}.
78687868
78697869@hook TARGET_INIT_BUILTINS
78707870
7871- @hook TARGET_CLEANUP_BUILTINS
7872-
78737871@hook TARGET_BUILTIN_DECL
78747872
78757873@hook TARGET_EXPAND_BUILTIN
You can’t perform that action at this time.
0 commit comments