aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-03-31 18:25:53 +0200
committerjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-04-01 22:02:56 +0200
commitc4778fc0292b7024bf815e20e31029955a7a7241 (patch)
treeaad614cc803ed17dc46a0dfa7b025d9858b8bfb9 /test/behavior/math.zig
parent77e70189f438316a8d4e48b2457be0b5eb5974f3 (diff)
downloadzig-c4778fc0292b7024bf815e20e31029955a7a7241.tar.gz
zig-c4778fc0292b7024bf815e20e31029955a7a7241.zip
stage2 ARM: implement mul_with_overflow for ints <= 16 bits
Diffstat (limited to 'test/behavior/math.zig')
-rw-r--r--test/behavior/math.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/math.zig b/test/behavior/math.zig
index e1886955aa..00728b13a4 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -678,7 +678,6 @@ test "small int addition" {
test "@mulWithOverflow" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
var result: u8 = undefined;
try expect(@mulWithOverflow(u8, 86, 3, &result));