From 4813d563d00731b6d4da137a2ab2e44da51becf7 Mon Sep 17 00:00:00 2001 From: Gio <102917377+gio256@users.noreply.github.com> Date: Sun, 16 Jun 2024 08:58:13 -0600 Subject: [PATCH] chore: replace stale link (#1602) --- plonky2/src/hash/arch/x86_64/poseidon_goldilocks_avx2_bmi2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2/src/hash/arch/x86_64/poseidon_goldilocks_avx2_bmi2.rs b/plonky2/src/hash/arch/x86_64/poseidon_goldilocks_avx2_bmi2.rs index e56fea5e..7046a7fd 100644 --- a/plonky2/src/hash/arch/x86_64/poseidon_goldilocks_avx2_bmi2.rs +++ b/plonky2/src/hash/arch/x86_64/poseidon_goldilocks_avx2_bmi2.rs @@ -494,7 +494,7 @@ unsafe fn mds_multiply_and_add_round_const_s( // Fall through for MDS matrix multiplication on low 32 bits // This is a GCC _local label_. For details, see - // https://doc.rust-lang.org/beta/unstable-book/library-features/asm.html#labels + // https://doc.rust-lang.org/rust-by-example/unsafe/asm.html#labels // In short, the assembler makes sure to assign a unique name to replace `2:` with a unique // name, so the label does not clash with any compiler-generated label. `2:` can appear // multiple times; to disambiguate, we must refer to it as `2b` or `2f`, specifying the