diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-03-01 15:21:10 +0100 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2022-03-01 15:21:10 +0100 |
| commit | caa4e30ef458ee150a9ce9950293827957afb87c (patch) | |
| tree | c820beca9cfac30ea1ea659f2f21f63e93a16406 /test/behavior/struct.zig | |
| parent | 5a6f4395e6569399b228030913b79cd73d5bad02 (diff) | |
| download | zig-caa4e30ef458ee150a9ce9950293827957afb87c.tar.gz zig-caa4e30ef458ee150a9ce9950293827957afb87c.zip | |
x64: impl airMemset using inline memset
Diffstat (limited to 'test/behavior/struct.zig')
| -rw-r--r-- | test/behavior/struct.zig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig index a505f5b04b..a5e39ad071 100644 --- a/test/behavior/struct.zig +++ b/test/behavior/struct.zig @@ -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; |
