Closed
Description
Static analyser cppcheck says:
llvm/include/llvm/Frontend/OpenMP/OMPIRBuilder.h:201:46: performance: Function parameter 'RHS' should be passed by const reference. [passedByValue]
Source code is
bool operator<(const TargetRegionEntryInfo RHS) const {
Suggest new code:
bool operator<(const TargetRegionEntryInfo & RHS) const {