For some reason, this causes assertions on gm965 only. In any case, it's
unnecessary since we don't need liveness information in the post-RA
scheduler.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92744
Cc: Mark Janes <mark.a.janes@intel.com>
Signed-off-by: Connor Abbott <cwabbott0@gmail.com>
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
void
fs_visitor::schedule_instructions(instruction_scheduler_mode mode)
{
- calculate_live_intervals();
+ if (mode != SCHEDULE_POST)
+ calculate_live_intervals();
int grf_count;
if (mode == SCHEDULE_POST)