HomeSort by: relevance | last modified time | path
    Searched defs:block_ends_with_call_p (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
cfghooks.h 147 bool (*block_ends_with_call_p) (basic_block); member in struct:cfg_hooks
248 extern bool block_ends_with_call_p (basic_block bb);
cfghooks.cc 1183 block_ends_with_call_p (basic_block bb) function
1185 if (!cfg_hooks->block_ends_with_call_p)
1186 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1188 return (cfg_hooks->block_ends_with_call_p) (bb);
  /src/external/gpl3/gcc.old/dist/gcc/
cfghooks.h 147 bool (*block_ends_with_call_p) (basic_block); member in struct:cfg_hooks
248 extern bool block_ends_with_call_p (basic_block bb);
cfghooks.cc 1175 block_ends_with_call_p (basic_block bb) function
1177 if (!cfg_hooks->block_ends_with_call_p)
1178 internal_error ("%s does not support block_ends_with_call_p", cfg_hooks->name);
1180 return (cfg_hooks->block_ends_with_call_p) (bb);

Completed in 16 milliseconds