From 141a9e06ad6d6f7d57f33435bd12c4df20cec0db Mon Sep 17 00:00:00 2001
From: Uros Bizjak <uros@gcc.gnu.org>
Date: Tue, 13 Nov 2012 18:22:04 +0100
Subject: [PATCH] mode-switching.c (create_pre_exit): Use NONDEBUG_INSN_P.

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

From-SVN: r193482
---
 gcc/mode-switching.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gcc/mode-switching.c b/gcc/mode-switching.c
index d607ad3122d8..ab51ae07397c 100644
--- a/gcc/mode-switching.c
+++ b/gcc/mode-switching.c
@@ -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
-- 
GitLab