mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
413a86f7eb
Closes #11751
49 lines
1.4 KiB
Zig
49 lines
1.4 KiB
Zig
const std = @import("std");
|
|
const expect = std.testing.expect;
|
|
const builtin = @import("builtin");
|
|
const native_arch = builtin.target.cpu.arch;
|
|
const maxInt = std.math.maxInt;
|
|
|
|
const Foo = struct {
|
|
x: u32,
|
|
y: u32,
|
|
z: u32,
|
|
};
|
|
|
|
test "@alignOf(T) before referencing T" {
|
|
try comptime expect(@alignOf(Foo) != maxInt(usize));
|
|
if (native_arch == .x86_64) {
|
|
try comptime expect(@alignOf(Foo) == 4);
|
|
}
|
|
}
|
|
|
|
test "comparison of @alignOf(T) against zero" {
|
|
{
|
|
const T = struct { x: u32 };
|
|
try expect(!(@alignOf(T) == 0));
|
|
try expect(@alignOf(T) != 0);
|
|
try expect(!(@alignOf(T) < 0));
|
|
try expect(!(@alignOf(T) <= 0));
|
|
try expect(@alignOf(T) > 0);
|
|
try expect(@alignOf(T) >= 0);
|
|
}
|
|
{
|
|
const T = struct {};
|
|
try expect(@alignOf(T) == 0);
|
|
try expect(!(@alignOf(T) != 0));
|
|
try expect(!(@alignOf(T) < 0));
|
|
try expect(@alignOf(T) <= 0);
|
|
try expect(!(@alignOf(T) > 0));
|
|
try expect(@alignOf(T) >= 0);
|
|
}
|
|
}
|
|
|
|
test "correct alignment for elements and slices of aligned array" {
|
|
var buf: [1024]u8 align(64) = undefined;
|
|
var start: usize = 1;
|
|
var end: usize = undefined;
|
|
try expect(@alignOf(@TypeOf(buf[start..end])) == @alignOf(*u8));
|
|
try expect(@alignOf(@TypeOf(&buf[start..end])) == @alignOf(*u8));
|
|
try expect(@alignOf(@TypeOf(&buf[start])) == @alignOf(*u8));
|
|
}
|