aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJustus Klausecker <justus@klausecker.de>2025-08-07 13:02:01 +0200
committerJustus Klausecker <justus@klausecker.de>2025-08-12 16:33:57 +0200
commit05762ca02ff97e7abfe1b52c090663dbf99bd4fc (patch)
tree73e60e53611da67db0dd73cbde39aa93d94f44cf /test
parent0ef26d113ae5a8b307a3af76db61706846fea22f (diff)
downloadzig-05762ca02ff97e7abfe1b52c090663dbf99bd4fc.tar.gz
zig-05762ca02ff97e7abfe1b52c090663dbf99bd4fc.zip
address most comments
Diffstat (limited to 'test')
-rw-r--r--test/cases/compile_errors/shift_by_larger_than_usize.zig1
-rw-r--r--test/cases/compile_errors/shlExact_shifts_out_1_bits.zig2
2 files changed, 1 insertions, 2 deletions
diff --git a/test/cases/compile_errors/shift_by_larger_than_usize.zig b/test/cases/compile_errors/shift_by_larger_than_usize.zig
index e956f5a767..1398bb859f 100644
--- a/test/cases/compile_errors/shift_by_larger_than_usize.zig
+++ b/test/cases/compile_errors/shift_by_larger_than_usize.zig
@@ -4,7 +4,6 @@ export fn f() usize {
}
// error
-// backend=stage2,llvm
// target=x86_64-linux
//
// :2:30: error: this implementation only supports comptime shift amounts of up to 2^64 - 1 bits
diff --git a/test/cases/compile_errors/shlExact_shifts_out_1_bits.zig b/test/cases/compile_errors/shlExact_shifts_out_1_bits.zig
index 35105c3896..aa9db75482 100644
--- a/test/cases/compile_errors/shlExact_shifts_out_1_bits.zig
+++ b/test/cases/compile_errors/shlExact_shifts_out_1_bits.zig
@@ -7,4 +7,4 @@ comptime {
// backend=stage2
// target=native
//
-// :2:25: error: overflow of integer type 'u8' with value '340'
+// :2:15: error: overflow of integer type 'u8' with value '340'