Re: [PATCH 1/4] Add block parameter to begin_block debug hook

2024-11-23 Thread Jeff Law
On 11/6/24 9:39 PM, Mark Harmstone wrote: Add a parameter to the begin_block debug hook that is a pointer to the tree_node of the block in question. CodeView needs this as it records line numbers of inlined functions in a different manner, so we need to be able to tell if the block is actually

[PATCH 1/4] Add block parameter to begin_block debug hook

2024-11-06 Thread Mark Harmstone
Add a parameter to the begin_block debug hook that is a pointer to the tree_node of the block in question. CodeView needs this as it records line numbers of inlined functions in a different manner, so we need to be able to tell if the block is actually the start of an inlined function. gcc/