[flang-commits] [flang] [Flang][OpenMP] Add semantic support for Loop Sequences and OpenMP loop fuse (PR #161213)

Tom Eccles via flang-commits flang-commits at lists.llvm.org
Tue Sep 30 02:52:10 PDT 2025


================
@@ -3360,6 +3360,7 @@ static void genOMPDispatch(lower::AbstractConverter &converter,
     newOp = genTeamsOp(converter, symTable, stmtCtx, semaCtx, eval, loc, queue,
                        item);
     break;
+  case llvm::omp::Directive::OMPD_fuse:
   case llvm::omp::Directive::OMPD_tile: {
----------------
tblah wrote:

nit
```suggestion
case llvm::omp::Directive::OMPD_fuse:
  [[fallthrough]]
case llvm::omp::Directive::OMPD_tile: {
```

https://github.com/llvm/llvm-project/pull/161213


More information about the flang-commits mailing list