Skip to content

Commit 34a5669

Browse files
[ORC] Fix SymbolLookupSet::containsDuplicates()
1 parent 25bbceb commit 34a5669

File tree

1 file changed

+1
-1
lines changed
  • llvm/include/llvm/ExecutionEngine/Orc

1 file changed

+1
-1
lines changed

llvm/include/llvm/ExecutionEngine/Orc/Core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ class SymbolLookupSet {
287287
for (UnderlyingVector::size_type I = 1; I != Symbols.size(); ++I)
288288
if (Symbols[I].first == Symbols[I - 1].first)
289289
return true;
290-
return true;
290+
return false;
291291
}
292292
#endif
293293

0 commit comments

Comments
 (0)