diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-10-24 14:57:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-24 14:57:55 -0400 |
| commit | 22a6a5d93f000afd7e00450bb5a359f39bb598bf (patch) | |
| tree | 65cae809bfc2edc9eb1642f2ace25313ec3a7193 /src/type.zig | |
| parent | d1230842ac882bbd6456081c474658b293aaf20a (diff) | |
| parent | f2814caaf04fc041a028d5ede4fb4db5ee2f19ae (diff) | |
| download | zig-22a6a5d93f000afd7e00450bb5a359f39bb598bf.tar.gz zig-22a6a5d93f000afd7e00450bb5a359f39bb598bf.zip | |
Merge pull request #17691 from mlugg/no-interned-runtime-value
Remove `InternPool.Key.runtime_value`, clean up Sema value resolution functions
Diffstat (limited to 'src/type.zig')
| -rw-r--r-- | src/type.zig | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/type.zig b/src/type.zig index 868c555143..812a753987 100644 --- a/src/type.zig +++ b/src/type.zig @@ -414,7 +414,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -633,7 +632,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -741,7 +739,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -1103,7 +1100,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -1461,7 +1457,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -1681,7 +1676,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -2217,7 +2211,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -2560,7 +2553,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, @@ -2754,7 +2746,6 @@ pub const Type = struct { // values, not types .undef, - .runtime_value, .simple_value, .variable, .extern_func, |
