aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/eval.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2022-03-25 09:40:11 -0700
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2022-03-27 09:20:37 -0700
commit8fbac2e86d35bf363b67aba0f1915b7c9d32dcd0 (patch)
tree76a8a0dc223a24db92c680fc70262ab80ca9b702 /test/behavior/eval.zig
parent01698528d1dff627b7e057651b137c20df7c7231 (diff)
downloadzig-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.zig1
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;