diff options
| author | joachimschmidt557 <joachim.schmidt557@outlook.com> | 2022-02-11 19:06:46 +0100 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2022-02-12 00:01:05 +0100 |
| commit | 2262640e8bf4cbcc4e6a46405d7a5a20562b8e47 (patch) | |
| tree | 20d751d8326a7e22665d1edecb4cd7fd680ec84e /test/behavior/basic.zig | |
| parent | a5a7f0ff0069d68ad60391dadce52321dd316138 (diff) | |
| download | zig-2262640e8bf4cbcc4e6a46405d7a5a20562b8e47.tar.gz zig-2262640e8bf4cbcc4e6a46405d7a5a20562b8e47.zip | |
stage2 ARM: lower const slices
Follow-up to e1a535360fb9ed08fc48018571b9702ab12a5876 for ARM
This also fixes some stack offset calculation bugs
Diffstat (limited to 'test/behavior/basic.zig')
| -rw-r--r-- | test/behavior/basic.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig index 5d7bb3b9a7..18a24f9b3a 100644 --- a/test/behavior/basic.zig +++ b/test/behavior/basic.zig @@ -216,7 +216,6 @@ test "compile time global reinterpret" { } test "cast undefined" { - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; const array: [100]u8 = undefined; @@ -678,7 +677,6 @@ test "string concatenation" { } test "thread local variable" { - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO @@ -704,7 +702,6 @@ fn maybe(x: bool) anyerror!?u32 { } test "pointer to thread local array" { - if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; if (builtin.zig_backend != .stage1) return error.SkipZigTest; // TODO |
