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 6c87483 commit f2de356Copy full SHA for f2de356
clang/lib/AST/OpenMPClause.cpp
@@ -305,8 +305,14 @@ OMPClause::child_range OMPIfClause::used_children() {
305
return child_range(&Condition, &Condition + 1);
306
}
307
308
-OMPClause::child_range OMPNowaitClause::used_children() {
+/*OMPClause::child_range OMPNowaitClause::used_children() {
309
310
+}*/
311
+OMPClause::child_range OMPNowaitClause::used_children() {
312
+ if (Condition)
313
+ return child_range(&Condition, &Condition + 1);
314
+ Stmt *Null = nullptr;
315
+ return child_range(&Null, &Null);
316
317
318
OMPClause::child_range OMPGrainsizeClause::used_children() {
0 commit comments