summaryrefslogtreecommitdiff
path: root/debian/patches/pr65618.diff
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/pr65618.diff')
-rw-r--r--debian/patches/pr65618.diff16
1 files changed, 0 insertions, 16 deletions
diff --git a/debian/patches/pr65618.diff b/debian/patches/pr65618.diff
deleted file mode 100644
index 2ec703c..0000000
--- a/debian/patches/pr65618.diff
+++ /dev/null
@@ -1,16 +0,0 @@
-# DP: Proposed patch for PR rtl-optimization/65618
-
---- a/src/gcc/emit-rtl.c
-+++ a/src/gcc/emit-rtl.c
-@@ -3742,6 +3742,11 @@ try_split (rtx pat, rtx_insn *trial, int last)
- next = NEXT_INSN (next))
- if (NOTE_KIND (next) == NOTE_INSN_CALL_ARG_LOCATION)
- {
-+ /* Advance after to the next instruction if it is about to
-+ be removed */
-+ if (after == next)
-+ after = NEXT_INSN(after);
-+
- remove_insn (next);
- add_insn_after (next, insn, NULL);
- break;