aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/struct.zig
diff options
context:
space:
mode:
authorjoachimschmidt557 <joachim.schmidt557@outlook.com>2022-03-08 14:20:15 +0100
committerJoachim Schmidt <joachim.schmidt557@outlook.com>2022-03-08 21:10:04 +0100
commit95fc41b2b433ccfa751c8877ec7edac3b9bffbd6 (patch)
tree1237575d07c872659fe6d59f38ddcff8573f8842 /test/behavior/struct.zig
parent55ccf4c7a8451edca47d8d6d82bddd9fe192744a (diff)
downloadzig-95fc41b2b433ccfa751c8877ec7edac3b9bffbd6.tar.gz
zig-95fc41b2b433ccfa751c8877ec7edac3b9bffbd6.zip
stage2 ARM: implement ret_load
Diffstat (limited to 'test/behavior/struct.zig')
-rw-r--r--test/behavior/struct.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/struct.zig b/test/behavior/struct.zig
index ae480d7075..35e6e3a3a3 100644
--- a/test/behavior/struct.zig
+++ b/test/behavior/struct.zig
@@ -138,7 +138,6 @@ fn returnEmptyStructInstance() StructWithNoFields {
test "fn call of struct field" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
const Foo = struct {
ptr: fn () i32,
@@ -196,7 +195,6 @@ const MemberFnRand = struct {
test "return struct byval from function" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
const bar = makeBar2(1234, 5678);
try expect(bar.y == 5678);
@@ -325,7 +323,6 @@ test "return empty struct from fn" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
_ = testReturnEmptyStructFromFn();
}