aboutsummaryrefslogtreecommitdiff
path: root/gcc/sched-int.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2011-08-12 14:00:00 -0700
committerRichard Henderson <rth@gcc.gnu.org>2011-08-12 14:00:00 -0700
commit7b4ef66246ab45928f337bde3d509a28352ebfb1 (patch)
treed173152d41fb9553ecaf105fbe4cff33fa1e10b5 /gcc/sched-int.h
parentc789cb7756423b73379c821307c7005a14ab8adc (diff)
downloadgcc-7b4ef66246ab45928f337bde3d509a28352ebfb1.zip
gcc-7b4ef66246ab45928f337bde3d509a28352ebfb1.tar.gz
gcc-7b4ef66246ab45928f337bde3d509a28352ebfb1.tar.bz2
re PR rtl-optimization/49994 (ICE: in maybe_record_trace_start, at dwarf2cfi.c:2234 with -fsched2-use-superblocks)
PR rtl-opt/49994 * sched-init.h (struct deps_desc): Add sched_before_next_jump. * sched-deps.c (init_deps): Clear it. (deps_analyze_insn): Consume it. (sched_analyze_insn): Fill it. From-SVN: r177721
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r--gcc/sched-int.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h
index 1e5c71e..6797397 100644
--- a/gcc/sched-int.h
+++ b/gcc/sched-int.h
@@ -496,6 +496,9 @@ struct deps_desc
scheduling is done. */
rtx sched_before_next_call;
+ /* Similarly, a list of insns which should not cross a branch. */
+ rtx sched_before_next_jump;
+
/* Used to keep post-call pseudo/hard reg movements together with
the call. */
enum post_call_group in_post_call_group_p;