stage2 ARM: support all integer types in genTypedValue

This commit is contained in:
joachimschmidt557
2022-02-08 12:56:50 +01:00
parent 37fea3e3dd
commit 6b0c950cb8
7 changed files with 17 additions and 22 deletions

View File

@@ -114,8 +114,6 @@ test "struct byval assign" {
}
test "call struct static method" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
const result = StructWithNoFields.add(3, 4);
try expect(result == 7);
}
@@ -193,8 +191,6 @@ test "store member function in variable" {
}
test "member functions" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
const r = MemberFnRand{ .seed = 1234 };
try expect(r.getSeed() == 1234);
}
@@ -244,8 +240,6 @@ test "call method with mutable reference to struct with no fields" {
}
test "usingnamespace within struct scope" {
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
const S = struct {
usingnamespace struct {
pub fn inner() i32 {