Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Thanks for fixing this and for the cleanup. Since we will have the same const INDEX_VERSION variable defined in both the bitcode reader and writer, I'm thinking it will make sense to move this somewhere common, which I guess would be ModuleSummaryIndex.h, maybe as a static variable in the ModuleSummaryIndex class itself.
Comment Actions
Moved constant to ModuleSummaryIndex as suggested. Now shared between BitcodeReader.cpp and BitcodeWriter.cpp.