We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 475c329 commit 0f9287fCopy full SHA for 0f9287f
llvm/lib/IR/LLVMContextImpl.h
@@ -333,7 +333,8 @@ template <> struct MDNodeKeyImpl<DILocation> {
333
return Line == RHS->getLine() && Column == RHS->getColumn() &&
334
Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt() &&
335
ImplicitCode == RHS->isImplicitCode() &&
336
- AtomGroup == RHS->getAtomGroup() && AtomRank == RHS->getAtomRank();
+ AtomGroup == RHS->getAtomGroup() &&
337
+ (uint8_t)AtomRank == RHS->getAtomRank();
338
}
339
340
unsigned getHashValue() const {
0 commit comments