mirror of
https://github.com/ziglang/zig.git
synced 2025-12-14 02:03:08 +00:00
26 lines
977 B
Zig
26 lines
977 B
Zig
const builtin = @import("builtin");
|
|
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
const math = std.math;
|
|
|
|
fn ctz(x: anytype) usize {
|
|
return @ctz(x);
|
|
}
|
|
|
|
test "fixed" {
|
|
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
|
|
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
|
|
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
|
|
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
|
|
|
|
try testCtz();
|
|
comptime try testCtz();
|
|
}
|
|
|
|
fn testCtz() !void {
|
|
try expect(ctz(@as(u128, 0x40000000000000000000000000000000)) == 126);
|
|
try expect(math.rotl(u128, @as(u128, 0x40000000000000000000000000000000), @as(u8, 1)) == @as(u128, 0x80000000000000000000000000000000));
|
|
try expect(ctz(@as(u128, 0x80000000000000000000000000000000)) == 127);
|
|
try expect(ctz(math.rotl(u128, @as(u128, 0x40000000000000000000000000000000), @as(u8, 1))) == 127);
|
|
}
|