You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unused private member from LLVMParallelAccessIndices (#2747)
```
.../SPIRV-LLVM-Translator/lib/SPIRV/SPIRVWriter.cpp:1697:44: warning: private field 'IndexGroupArrayMap' is not used [-Wunused-private-field]
1697 | LLVMToSPIRVBase::LLVMToSPIRVMetadataMap &IndexGroupArrayMap;
|
```
IndexGroupArrayMap is used but only during the constructor to
validate and build other things.
This change happened in 4a7804bc45ada92b8365c82b99387726382b5d7d
where code was moved from a separate method, into the constructor.
Original commit:
KhronosGroup/SPIRV-LLVM-Translator@9a23d54079204ae
0 commit comments