aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/math.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-04-23 20:25:59 +0200
committerJakub Konka <kubkon@jakubkonka.com>2022-05-05 21:43:35 +0200
commitc2d2307d09017e97a9e9ce59d29754ff2becdd54 (patch)
tree951b53498eb38ba6d37dea97a2637d5455443c66 /test/behavior/math.zig
parent59905a62f9da9946a797cc35a2523c9929663600 (diff)
downloadzig-c2d2307d09017e97a9e9ce59d29754ff2becdd54.tar.gz
zig-c2d2307d09017e97a9e9ce59d29754ff2becdd54.zip
stage2 AArch64: initial implementation of {add,sub}_with_overflow
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 3997f2db04..39489990d9 100644
--- a/test/behavior/math.zig
+++ b/test/behavior/math.zig
@@ -624,7 +624,6 @@ test "128-bit multiplication" {
test "@addWithOverflow" {
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
var result: u8 = undefined;
try expect(@addWithOverflow(u8, 250, 100, &result));