This is an archive of the discontinued LLVM Phabricator instance.

[LoopVectorize][NFC] Fix incorrect comment in LoopVectorize.h
ClosedPublic

Authored by benshi001 on Mar 5 2023, 11:06 PM.

Diff Detail

Event Timeline

benshi001 created this revision.Mar 5 2023, 11:06 PM
Herald added a project: Restricted Project. · View Herald TranscriptMar 5 2023, 11:06 PM
benshi001 requested review of this revision.Mar 5 2023, 11:06 PM
// 1. The main loop pass that drives the different parts.
// 2. LoopVectorizationLegality - A unit that checks for the legality
//    of the vectorization.
// 3. InnerLoopVectorizer - A unit that performs the actual
//    widening of instructions.
// 4. LoopVectorizationCostModel - A unit that checks for the profitability
//    of vectorization. It decides on the optimal vector width, which
//    can be one, if vectorization is not profitable.
david-arm accepted this revision.Mar 6 2023, 6:01 AM
This revision is now accepted and ready to land.Mar 6 2023, 6:01 AM
fhahn accepted this revision.Mar 6 2023, 7:47 AM

LGTM, thanks for updating this!