Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/polly
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2022-01-09 23:21:02 +0300
committerKazu Hirata <kazu@google.com>2022-01-09 23:21:02 +0300
commitb12fd138127e368a5d78109bef77713c0bcd536e (patch)
tree347dc8600af5f7a303cd06ba641d4d01e522c209 /polly
parentac2090d507a67d1e98594d081ce3951837d43f28 (diff)
Fix bugprone argument comments.
Identified by bugprone-argument-comment.
Diffstat (limited to 'polly')
-rw-r--r--polly/include/polly/ScopPass.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/include/polly/ScopPass.h b/polly/include/polly/ScopPass.h
index 34eea0431f44..db910572bcc7 100644
--- a/polly/include/polly/ScopPass.h
+++ b/polly/include/polly/ScopPass.h
@@ -255,7 +255,7 @@ public:
while (!Worklist.empty()) {
Region *R = Worklist.pop_back_val();
- if (!SD.isMaxRegionInScop(*R, /*Verifying=*/false))
+ if (!SD.isMaxRegionInScop(*R, /*Verify=*/false))
continue;
Scop *scop = SI.getScop(R);
if (!scop)