aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/call.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-03-19 06:49:50 -0400
committerJakub Konka <kubkon@jakubkonka.com>2023-03-21 08:49:54 +0100
commitf95faac5aeeebe0b77ff7023513cdd3e34b71de1 (patch)
tree77b8094d7da9c171dc29794fa2640e86c11e18bc /test/behavior/call.zig
parent24f0900ecba3ea67b7c6df31836ed40de22b7ab8 (diff)
downloadzig-f95faac5aeeebe0b77ff7023513cdd3e34b71de1.tar.gz
zig-f95faac5aeeebe0b77ff7023513cdd3e34b71de1.zip
x86_64: (re)implement optional ops
Note that this commit also changes the layout of optional for all other backends using `src/codegen.zig` without updating them!
Diffstat (limited to 'test/behavior/call.zig')
-rw-r--r--test/behavior/call.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/call.zig b/test/behavior/call.zig
index b51a459932..ab947f69dd 100644
--- a/test/behavior/call.zig
+++ b/test/behavior/call.zig
@@ -329,7 +329,6 @@ test "inline call preserves tail call" {
test "inline call doesn't re-evaluate non generic struct" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
const S = struct {
fn foo(f: struct { a: u8, b: u8 }) !void {