This is an archive of the discontinued LLVM Phabricator instance.

[WebAssembly] Use ArrayRef/SmallVectorImpl in parameters (NFC)
ClosedPublic

Authored by aheejin on Mar 24 2023, 12:23 PM.

Details

Summary

It is recommended to use SmallVectorImpl/ArrayRef over
SmallVector<TypeName, N> for function parameters:
https://llvm.org/docs/ProgrammersManual.html#llvm-adt-smallvector-h

Diff Detail

Event Timeline

aheejin created this revision.Mar 24 2023, 12:23 PM
Herald added a project: Restricted Project. · View Herald TranscriptMar 24 2023, 12:23 PM
Herald added subscribers: pmatos, asb, wingo and 5 others. · View Herald Transcript
aheejin requested review of this revision.Mar 24 2023, 12:23 PM
Herald added a project: Restricted Project. · View Herald TranscriptMar 24 2023, 12:23 PM
dschuff accepted this revision.Mar 24 2023, 1:06 PM

cool, LGTM!

This revision is now accepted and ready to land.Mar 24 2023, 1:06 PM