Re: [PATCH 03/10] for_each_eh_label callbacks take an rtx_code_label

2014-09-04 Thread Jeff Law
On 09/04/14 19:52, David Malcolm wrote: gcc/ * except.c (for_each_eh_label): Within param "callback", strengthen param from rtx to rtx_code_label *. Strengthen local "lab" from rtx to rtx_code_label *. Remove redundant check on LABEL_P (lab), since this is known

[PATCH 03/10] for_each_eh_label callbacks take an rtx_code_label

2014-09-04 Thread David Malcolm
gcc/ * except.c (for_each_eh_label): Within param "callback", strengthen param from rtx to rtx_code_label *. Strengthen local "lab" from rtx to rtx_code_label *. Remove redundant check on LABEL_P (lab), since this is known from the type rtx_code_label *. *