Skip to content

Commit 68c4020

Browse files
committed
msan: notate more variable assignments from assembly code
This was missed in 31ba404 because older versions of clang did not complain about it. But clang-17, at least, does.
1 parent f41c7c8 commit 68c4020

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/scalar_4x64_impl.h

+3
Original file line numberDiff line numberDiff line change
@@ -814,6 +814,9 @@ static void secp256k1_scalar_mul_512(uint64_t *l8, const secp256k1_scalar *a, co
814814
: "+d"(pb)
815815
: "S"(l8), "D"(a->d)
816816
: "rax", "rbx", "rcx", "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", "cc", "memory");
817+
818+
SECP256K1_CHECKMEM_MSAN_DEFINE(l8, sizeof(*l8) * 8);
819+
817820
#else
818821
/* 160 bit accumulator. */
819822
uint64_t c0 = 0, c1 = 0;

0 commit comments

Comments
 (0)