Along with bulk importing we can avoid the use of post-pass metadata
linking.
Details
Diff Detail
Event Timeline
LGTM.
See inline comments.
tools/llvm-link/llvm-link.cpp | ||
---|---|---|
130 | It can be used with the FunctionImporter The function importer is not involved here right? Comment may be updated. | |
259 | Do we actually want bulk import for llvm-link? Maybe doing one import at a time is a "feature", since it not testing the same thing. |
tools/llvm-link/llvm-link.cpp | ||
---|---|---|
130 | Will fix. This was pretty much just cloned with minor tweaks to the arguments from what is in the function importer pass, since we want to do the same thing here. | |
259 | Yes, we do need to do the bulk importing to get the metadata importing to work as expected without post-pass metadata linking. |
It can be used with the FunctionImporter
The function importer is not involved here right? Comment may be updated.