[flang-commits] [PATCH] D114104: [FIR] Convert fir.allocmem and fir.freemem operations to calls to malloc and free, respectively
Eric Schweitz via Phabricator via flang-commits
flang-commits at lists.llvm.org
Thu Nov 18 15:00:28 PST 2021
schweitz added inline comments.
================
Comment at: flang/lib/Optimizer/CodeGen/CodeGen.cpp:812
+ if (recTy.getNumLenParams() != 0)
+ TODO(loc, "fir.allocmem of derived type with length parameters");
+ mlir::Value size = genTypeSizeInBytes(loc, ity, rewriter, ty);
----------------
kiranchandramohan wrote:
> Nit: We have been using notifyMatch failure instead of TODOs in upstream.
That's rather unfortunate since the point of the TODO macro was to make them easy to grep for.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114104/new/
https://reviews.llvm.org/D114104
More information about the flang-commits
mailing list