Details
Details
Diff Detail
Diff Detail
- Repository
- rLLD LLVM Linker
- Build Status
Buildable 13664 Build 13664: arc lint + arc unit
Event Timeline
lld/trunk/wasm/Writer.cpp | ||
---|---|---|
574–576 ↗ | (On Diff #129311) | auto It = TypeIndices.find(Sig); if (It == TypeIndices.end()) { error(...); return 0; } return *It; is faster because it looks up the hash table only once. |