aboutsummaryrefslogtreecommitdiff
path: root/src/codegen
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2022-12-08 19:52:05 +0200
committerAndrew Kelley <andrew@ziglang.org>2022-12-09 20:37:18 -0700
commit9d93b2ccf11f584320a2c5209dd2d94705167695 (patch)
treebc746509f92c029be2b6cd3338aace01a5baa91e /src/codegen
parent5831b68341827b544ea3f268c921e9044bd11047 (diff)
downloadzig-9d93b2ccf11f584320a2c5209dd2d94705167695.tar.gz
zig-9d93b2ccf11f584320a2c5209dd2d94705167695.zip
Eliminate `BoundFn` type from the language
Closes #9484
Diffstat (limited to 'src/codegen')
-rw-r--r--src/codegen/c.zig4
-rw-r--r--src/codegen/llvm.zig6
-rw-r--r--src/codegen/spirv.zig2
3 files changed, 0 insertions, 12 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index 1fd9539730..364d8f586d 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -866,7 +866,6 @@ pub const DeclGen = struct {
.NoReturn,
.Undefined,
.Null,
- .BoundFn,
.Opaque,
=> unreachable,
@@ -1320,7 +1319,6 @@ pub const DeclGen = struct {
.NoReturn => unreachable,
.Undefined => unreachable,
.Null => unreachable,
- .BoundFn => unreachable,
.Opaque => unreachable,
.Frame,
@@ -2050,8 +2048,6 @@ pub const DeclGen = struct {
.ComptimeInt,
.Type,
=> unreachable, // must be const or comptime
-
- .BoundFn => unreachable, // this type will be deleted from the language
}
}
diff --git a/src/codegen/llvm.zig b/src/codegen/llvm.zig
index 4115a4870e..7d70a51666 100644
--- a/src/codegen/llvm.zig
+++ b/src/codegen/llvm.zig
@@ -2341,8 +2341,6 @@ pub const Object = struct {
.Null => unreachable,
.EnumLiteral => unreachable,
- .BoundFn => @panic("TODO remove BoundFn from the language"),
-
.Frame => @panic("TODO implement lowerDebugType for Frame types"),
.AnyFrame => @panic("TODO implement lowerDebugType for AnyFrame types"),
}
@@ -3095,8 +3093,6 @@ pub const DeclGen = struct {
.Null => unreachable,
.EnumLiteral => unreachable,
- .BoundFn => @panic("TODO remove BoundFn from the language"),
-
.Frame => @panic("TODO implement llvmType for Frame types"),
.AnyFrame => @panic("TODO implement llvmType for AnyFrame types"),
}
@@ -3896,7 +3892,6 @@ pub const DeclGen = struct {
.NoReturn => unreachable,
.Undefined => unreachable,
.Null => unreachable,
- .BoundFn => unreachable,
.Opaque => unreachable,
.Frame,
@@ -10792,7 +10787,6 @@ fn isByRef(ty: Type) bool {
.EnumLiteral,
.Undefined,
.Null,
- .BoundFn,
.Opaque,
=> unreachable,
diff --git a/src/codegen/spirv.zig b/src/codegen/spirv.zig
index bd0c8bc53c..4db3b34b1e 100644
--- a/src/codegen/spirv.zig
+++ b/src/codegen/spirv.zig
@@ -538,8 +538,6 @@ pub const DeclGen = struct {
.Type,
=> unreachable, // Must be comptime.
- .BoundFn => unreachable, // this type will be deleted from the language.
-
else => |tag| return self.todo("Implement zig type '{}'", .{tag}),
};
}