This is an archive of the discontinued LLVM Phabricator instance.

[ARM][MVE] Fix copy-paste error in VQSHL instruction ids.
ClosedPublic

Authored by simon_tatham on Dec 6 2019, 6:18 AM.

Details

Summary

The immediate forms of the MVE VQSHL instruction have MC names like
MVE_VSLIimms8 and MVE_VSLIimmu32. Those names are confusing,
because VSLI is a completely different shift instruction with no
semantic relation to VQSHL. But it just happens to be defined
immediately before VQSHL in ARMInstrMVE.td, so this looks like a
copy-paste error. Renamed the ids to match the instruction name.

Diff Detail

Event Timeline

simon_tatham created this revision.Dec 6 2019, 6:18 AM
miyuki accepted this revision.Dec 6 2019, 7:09 AM
This revision is now accepted and ready to land.Dec 6 2019, 7:09 AM
This revision was automatically updated to reflect the committed changes.