We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cc4701 commit bd54af8Copy full SHA for bd54af8
clang/lib/CodeGen/CGLoopInfo.cpp
@@ -446,13 +446,12 @@ MDNode *LoopInfo::createMetadata(
446
447
LoopAttributes::LoopAttributes(bool IsParallel)
448
: IsParallel(IsParallel), VectorizeEnable(LoopAttributes::Unspecified),
449
- SYCLIVDepEnable(false), SYCLIVDepSafelen(0), SYCLIInterval(0),
450
- SYCLMaxConcurrencyNThreads(0),
451
UnrollEnable(LoopAttributes::Unspecified),
452
UnrollAndJamEnable(LoopAttributes::Unspecified), VectorizeWidth(0),
453
- InterleaveCount(0), UnrollCount(0), UnrollAndJamCount(0),
454
- DistributeEnable(LoopAttributes::Unspecified), PipelineDisabled(false),
455
- PipelineInitiationInterval(0) {}
+ InterleaveCount(0), SYCLIVDepEnable(false), SYCLIVDepSafelen(0),
+ SYCLIInterval(0), SYCLMaxConcurrencyNThreads(0), UnrollCount(0),
+ UnrollAndJamCount(0), DistributeEnable(LoopAttributes::Unspecified),
+ PipelineDisabled(false), PipelineInitiationInterval(0) {}
456
457
void LoopAttributes::clear() {
458
IsParallel = false;
0 commit comments