diff options
| author | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2022-03-25 09:40:11 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <mitchell.hashimoto@gmail.com> | 2022-03-27 09:20:37 -0700 |
| commit | 8fbac2e86d35bf363b67aba0f1915b7c9d32dcd0 (patch) | |
| tree | 76a8a0dc223a24db92c680fc70262ab80ca9b702 /test/behavior/eval.zig | |
| parent | 01698528d1dff627b7e057651b137c20df7c7231 (diff) | |
| download | zig-8fbac2e86d35bf363b67aba0f1915b7c9d32dcd0.tar.gz zig-8fbac2e86d35bf363b67aba0f1915b7c9d32dcd0.zip | |
stage2: runtime safety check integer cast truncating bits
Diffstat (limited to 'test/behavior/eval.zig')
| -rw-r--r-- | test/behavior/eval.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/behavior/eval.zig b/test/behavior/eval.zig index e3024a3895..9cad1c6106 100644 --- a/test/behavior/eval.zig +++ b/test/behavior/eval.zig @@ -443,6 +443,7 @@ fn copyWithPartialInline(s: []u32, b: []u8) void { test "binary math operator in partially inlined function" { if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO + if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO var s: [4]u32 = undefined; var b: [16]u8 = undefined; |
