stage2 ARM: support all integer types in genTypedValue
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user