diff options
| author | Veikka Tuominen <git@vexu.eu> | 2022-11-30 16:11:27 +0200 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2022-11-30 17:11:06 +0200 |
| commit | 15cc83e27ae8a1740d9b7e2ec14044903979a832 (patch) | |
| tree | 13a95cac845f3baaa5c6a63fa9bd76cf60976845 /test/behavior | |
| parent | f4afeb3ffd7f968d2c93839dc5a1f2a744e114ff (diff) | |
| download | zig-15cc83e27ae8a1740d9b7e2ec14044903979a832.tar.gz zig-15cc83e27ae8a1740d9b7e2ec14044903979a832.zip | |
cbe: reduce amount of temporary locals
Diffstat (limited to 'test/behavior')
| -rw-r--r-- | test/behavior/math.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig index 4b6b882fe5..0ef1bd759f 100644 --- a/test/behavior/math.zig +++ b/test/behavior/math.zig @@ -357,6 +357,8 @@ fn comptimeAdd(comptime a: comptime_int, comptime b: comptime_int) comptime_int } test "binary not" { + if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO + try expect(comptime x: { break :x ~@as(u16, 0b1010101010101010) == 0b0101010101010101; }); |
