x64: impl airMemset using inline memset

This commit is contained in:
Jakub Konka
2022-03-01 15:21:10 +01:00
parent 5a6f4395e6
commit caa4e30ef4
3 changed files with 100 additions and 42 deletions

View File

@@ -80,12 +80,11 @@ const StructWithNoFields = struct {
const StructFoo = struct {
a: i32,
b: bool,
c: f32,
c: u64,
};
test "structs" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
var foo: StructFoo = undefined;