Add the names of the input files responsible for each error to the
messages.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 32705 Build 32704: arc lint + arc unit
Event Timeline
lld/wasm/Writer.cpp | ||
---|---|---|
379 | That's correct. I figured that printing all relevant files could get overwhelming rather quickly and that even when it would be reasonable, we still get 80% of the benefit by printing just one file. | |
419 | Switched, and also above. I'm always wary about StringRef because I've been burned by it not owning its contents one too many times. I assume when it is used to insert something into a StringMap the string value is copied, so it should be ok here. |
So in the case the multiple files use a given feature it will show just one them? (i.e. this insert fails after the first one?)