aboutsummaryrefslogtreecommitdiff
path: root/src/InternPool.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/InternPool.zig')
-rw-r--r--src/InternPool.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/InternPool.zig b/src/InternPool.zig
index a63c81f2ba..b6d5e77f53 100644
--- a/src/InternPool.zig
+++ b/src/InternPool.zig
@@ -2818,7 +2818,6 @@ pub const Index = enum(u32) {
generic_poison,
/// Used by Air/Sema only.
- var_args_param_type = std.math.maxInt(u32) - 1,
none = std.math.maxInt(u32),
_,
@@ -8938,7 +8937,6 @@ pub fn typeOf(ip: *const InternPool, index: Index) Index {
.memoized_call => unreachable,
},
- .var_args_param_type => unreachable,
.none => unreachable,
};
}
@@ -9153,8 +9151,6 @@ pub fn zigTypeTagOrPoison(ip: *const InternPool, index: Index) error{GenericPois
.empty_struct => unreachable,
.generic_poison => unreachable,
- .var_args_param_type => unreachable, // special tag
-
_ => switch (ip.items.items(.tag)[@intFromEnum(index)]) {
.removed => unreachable,