[clang] [llvm] Assume (PR #97535)
Krzysztof Parzyszek via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 10 07:32:37 PDT 2024
================
@@ -760,6 +760,9 @@ void clang::getOpenMPCaptureRegions(
case OMPD_parallel:
CaptureRegions.push_back(OMPD_parallel);
break;
+ case OMPD_assume:
+ CaptureRegions.push_back(OMPD_unknown);
+ break;
----------------
kparzysz wrote:
Please don't push OMPD_unknown here, instead add OMPD_assume to the directives at lines 790+.
https://github.com/llvm/llvm-project/pull/97535
More information about the cfe-commits
mailing list