diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-13 17:22:04 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-13 17:22:04 +0000 |
commit | 8c94ea57c523de90bc775a326f50c17d1a987113 (patch) | |
tree | e3e4bc2ff413bfb47833740cd17e0fbc5ae4da8a /gcc/mode-switching.c | |
parent | 344aefcb22ba415a160427791a8bb086746222d1 (diff) | |
download | gcc-8c94ea57c523de90bc775a326f50c17d1a987113.tar.gz |
* mode-switching.c (create_pre_exit): Use NONDEBUG_INSN_P.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193482 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mode-switching.c')
-rw-r--r-- | gcc/mode-switching.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/mode-switching.c b/gcc/mode-switching.c index d607ad3122d..ab51ae07397 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 |