On Tue, Nov 13, 2012 at 06:07:20PM +0100, Uros Bizjak wrote: > @@ -242,7 +242,8 @@ create_pre_exit (int n_entities, int *entity_map, > int copy_start, copy_num; > int j; > > - if (INSN_P (return_copy)) > + if (INSN_P (return_copy) > + && !DEBUG_INSN_P (return_copy))
Please use if (NONDEBUG_INSN_P (return_copy)) instead. Jakub