Commit 141a9e06 by Uros Bizjak

mode-switching.c (create_pre_exit): Use NONDEBUG_INSN_P.

	* mode-switching.c (create_pre_exit): Use NONDEBUG_INSN_P.

From-SVN: r193482
parent 397b971c
......@@ -242,8 +242,7 @@ create_pre_exit (int n_entities, int *entity_map, const int *num_modes)
int copy_start, copy_num;
int j;
if (INSN_P (return_copy)
&& !DEBUG_INSN_P (return_copy))
if (NONDEBUG_INSN_P (return_copy))
{
/* When using SJLJ exceptions, the call to the
unregister function is inserted between the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment