aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/string_literals.zig
diff options
context:
space:
mode:
authorDavid Rubin <daviru007@icloud.com>2024-07-15 02:34:40 -0700
committerDavid Rubin <daviru007@icloud.com>2024-07-26 04:05:41 -0700
commitcde6956b2128d9c28b00e0e25e27346abd1c3a88 (patch)
tree7cb3b1f580f8c1078fc2507f40555f0d4911528a /test/behavior/string_literals.zig
parentba58b7b88143f93f671a53a4809c9724de898b8d (diff)
downloadzig-cde6956b2128d9c28b00e0e25e27346abd1c3a88.tar.gz
zig-cde6956b2128d9c28b00e0e25e27346abd1c3a88.zip
riscv: remove redundant assert in `genBinOp`
Diffstat (limited to 'test/behavior/string_literals.zig')
-rw-r--r--test/behavior/string_literals.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/behavior/string_literals.zig b/test/behavior/string_literals.zig
index a45403af97..8a0a105228 100644
--- a/test/behavior/string_literals.zig
+++ b/test/behavior/string_literals.zig
@@ -65,7 +65,6 @@ fn testFnForSrc() std.builtin.SourceLocation {
test "@src() returns a struct containing 0-terminated string slices" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
const src = testFnForSrc();
try std.testing.expect([:0]const u8 == @TypeOf(src.file));