[PATCH] D79484: [DebugInfo] Fortran module DebugInfo support in LLVM
Eric Schweitz via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 7 08:29:54 PDT 2020
schweitz added a comment.
I assume there are corresponding changes to flang. Can you provide a link to them? Thanks.
================
Comment at: llvm/lib/Bitcode/Reader/MetadataLoader.cpp:1421
case bitc::METADATA_MODULE: {
- if (Record.size() < 5 || Record.size() > 7)
+ if (Record.size() < 5 || Record.size() > 8)
return error("Invalid record");
----------------
It looks like 2 new fields are being added, but only 1 here.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79484/new/
https://reviews.llvm.org/D79484
More information about the llvm-commits
mailing list