aboutsummaryrefslogtreecommitdiff
path: root/lib/std/debug.zig
diff options
context:
space:
mode:
authormlugg <mlugg@mlugg.co.uk>2025-06-01 08:28:51 +0100
committermlugg <mlugg@mlugg.co.uk>2025-06-01 12:10:57 +0100
commitfd72b38f68c6c0f637c7d3639162e4053135086c (patch)
treefc87b87e06241717aa794d0bbee8da5071947b7f /lib/std/debug.zig
parentcc047fdd959edb260f7a6e305ccad53f185ece66 (diff)
downloadzig-fd72b38f68c6c0f637c7d3639162e4053135086c.tar.gz
zig-fd72b38f68c6c0f637c7d3639162e4053135086c.zip
std: remove old panic handlers after zig1.wasm update
Diffstat (limited to 'lib/std/debug.zig')
-rw-r--r--lib/std/debug.zig6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
index 450c627e15..48b13a6b1a 100644
--- a/lib/std/debug.zig
+++ b/lib/std/debug.zig
@@ -122,12 +122,6 @@ pub fn FullPanic(comptime panicFn: fn ([]const u8, ?usize) noreturn) type {
@branchHint(.cold);
call("for loop over objects with non-equal lengths", @returnAddress());
}
- /// Delete after next zig1.wasm update
- pub const memcpyLenMismatch = copyLenMismatch;
- /// Delete after next zig1.wasm update
- pub const castTruncatedData = integerOutOfBounds;
- /// Delete after next zig1.wasm update
- pub const negativeToUnsigned = integerOutOfBounds;
pub fn copyLenMismatch() noreturn {
@branchHint(.cold);
call("source and destination arguments have non-equal lengths", @returnAddress());