[flang-commits] [flang] [flang] Add ability to have special allocator for descriptor data (PR #100690)
Peter Klausler via flang-commits
flang-commits at lists.llvm.org
Fri Jul 26 08:35:47 PDT 2024
================
@@ -290,7 +296,7 @@ void Descriptor::Dump(FILE *f) const {
std::fprintf(f, " rank %d\n", static_cast<int>(raw_.rank));
std::fprintf(f, " type %d\n", static_cast<int>(raw_.type));
std::fprintf(f, " attribute %d\n", static_cast<int>(raw_.attribute));
- std::fprintf(f, " addendum %d\n", static_cast<int>(raw_.f18Addendum));
+ std::fprintf(f, " extra %d\n", static_cast<int>(raw_.extra));
----------------
klausler wrote:
Please decode the `extra` field in the dump output.
https://github.com/llvm/llvm-project/pull/100690
More information about the flang-commits
mailing list