aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/basic.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2022-12-02 19:54:00 -0500
committerJacob Young <jacobly0@users.noreply.github.com>2022-12-02 22:21:24 -0500
commitfdedd62365b5e3f3fa908ae063df86d11a3c02bb (patch)
tree46f6b65879ff774baec072d6ad745106f7ff3032 /test/behavior/basic.zig
parentaf4361f57af388238a075b0c8ef5b34e75b73787 (diff)
downloadzig-fdedd62365b5e3f3fa908ae063df86d11a3c02bb.tar.gz
zig-fdedd62365b5e3f3fa908ae063df86d11a3c02bb.zip
cbe: use memcpy for underaligned loads and stores
Diffstat (limited to 'test/behavior/basic.zig')
-rw-r--r--test/behavior/basic.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig
index 9fd9e03116..9f6dac81ca 100644
--- a/test/behavior/basic.zig
+++ b/test/behavior/basic.zig
@@ -754,7 +754,6 @@ fn maybe(x: bool) anyerror!?u32 {
}
test "pointer to thread local array" {
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_wasm) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
@@ -770,7 +769,6 @@ threadlocal var buffer: [11]u8 = undefined;
test "auto created variables have correct alignment" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
const S = struct {
fn foo(str: [*]const u8) u32 {