Skip to content

Commit d252365

Browse files
authoredAug 24, 2024
[IR] Modernize StructuralHashImpl (NFC) (#105951)
1 parent 2cb25d5 commit d252365

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎llvm/lib/IR/StructuralHash.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace {
2424
// by the MergeFunctions pass.
2525

2626
class StructuralHashImpl {
27-
uint64_t Hash;
27+
uint64_t Hash = 4;
2828

2929
void hash(uint64_t V) { Hash = hashing::detail::hash_16_bytes(Hash, V); }
3030

@@ -43,7 +43,7 @@ class StructuralHashImpl {
4343
}
4444

4545
public:
46-
StructuralHashImpl() : Hash(4) {}
46+
StructuralHashImpl() = default;
4747

4848
void updateOperand(Value *Operand) {
4949
hashType(Operand->getType());

0 commit comments

Comments
 (0)