mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 15:12:31 +00:00
std.hash.int: restore previous behavior
In the parent commit, I handled odd bit sizes by upcasting and truncating. However it seems the else branch is intended to handle those cases instead, so this commit reverts that behavior.
This commit is contained in:
parent
5ad44c14b0
commit
d09fd249c0
@ -51,12 +51,8 @@ pub fn int(input: anytype) @TypeOf(input) {
|
||||
const Unsigned = @Type(.{ .int = .{ .signedness = .unsigned, .bits = info.bits } });
|
||||
const casted: Unsigned = @bitCast(input);
|
||||
return @bitCast(int(casted));
|
||||
} else if (info.bits < 16) {
|
||||
return @truncate(int(@as(u16, input)));
|
||||
} else if (info.bits < 32) {
|
||||
return @truncate(int(@as(u32, input)));
|
||||
} else if (info.bits < 64) {
|
||||
return @truncate(int(@as(u64, input)));
|
||||
} else if (info.bits < 4) {
|
||||
return @truncate(int(@as(u4, input)));
|
||||
}
|
||||
var x = input;
|
||||
switch (info.bits) {
|
||||
|
Loading…
Reference in New Issue
Block a user