This is an archive of the discontinued LLVM Phabricator instance.

Fix minor build issue (NFC)
ClosedPublic

Authored by dstuttard on Jan 11 2021, 7:13 AM.

Details

Summary

Change [x86] Fix tile register spill issue was causing problems for our build
using gcc-5.4.1

The problem was caused by this line:

for (const MachineInstr &MI : make_range(MIS.begin(), MI))

where MI was previously defined as a MachineBasicBlock iterator.

Diff Detail

Event Timeline

dstuttard created this revision.Jan 11 2021, 7:13 AM
dstuttard requested review of this revision.Jan 11 2021, 7:13 AM
Herald added a project: Restricted Project. · View Herald TranscriptJan 11 2021, 7:13 AM
This revision was not accepted when it landed; it landed in state Needs Review.Jan 11 2021, 11:24 AM
Closed by commit rG5464baaae8c1: Fix minor build issue (NFC) (authored by dstuttard, committed by rnk). · Explain Why
This revision was automatically updated to reflect the committed changes.
rnk added a subscriber: rnk.Jan 11 2021, 11:24 AM

We are also observing this build breakage, so I'm going to go ahead and push this now.