From 4d3267307c5cc049642001e0a93553dd2f3169a2 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Thu, 9 Apr 2026 16:40:26 -0400 Subject: [PATCH] Fix output for 16-bit targets `tokens32` being used for both 16 and 32 bits appears to be an artifact from copying the prior block and modifying it (as reasonable for such development), but itself unsound. --- cpubits/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpubits/src/lib.rs b/cpubits/src/lib.rs index 183428c8..6589bb0b 100644 --- a/cpubits/src/lib.rs +++ b/cpubits/src/lib.rs @@ -259,7 +259,7 @@ macro_rules! cpubits { // WASM target_arch = "wasm32", ))] - 16 => { $( $tokens32 )* } + 16 => { $( $tokens16 )* } 32 => { $( $tokens32 )* } 64 => { $( $tokens64 )* } }