aboutsummaryrefslogtreecommitdiff
path: root/src/all_types.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-10-24 02:25:22 -0400
committerGitHub <noreply@github.com>2019-10-24 02:25:22 -0400
commit345042ecbc7fb645fd17b69df4e57ffefa5be5a5 (patch)
tree457ea0157f0f42dccf905593426154be8682812b /src/all_types.hpp
parentef62452363de75240b21299e9f80b4851433faaa (diff)
parent60cd11bd4b48e4dfdf11d1f25cb1ee842a49ee1d (diff)
downloadzig-345042ecbc7fb645fd17b69df4e57ffefa5be5a5.tar.gz
zig-345042ecbc7fb645fd17b69df4e57ffefa5be5a5.zip
Merge pull request #3519 from ziglang/move-builtin-types
move types from builtin to std
Diffstat (limited to 'src/all_types.hpp')
-rw-r--r--src/all_types.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp
index 052c67d334..a8cfa0227f 100644
--- a/src/all_types.hpp
+++ b/src/all_types.hpp
@@ -1930,7 +1930,6 @@ struct CodeGen {
ZigList<ZigType *> type_resolve_stack;
ZigPackage *std_package;
- ZigPackage *panic_package;
ZigPackage *test_runner_package;
ZigPackage *compile_var_package;
ZigType *compile_var_import;
@@ -2006,7 +2005,6 @@ struct CodeGen {
ZigFn *cur_fn;
ZigFn *main_fn;
ZigFn *panic_fn;
- TldFn *panic_tld_fn;
ZigFn *largest_frame_fn;
@@ -2030,7 +2028,6 @@ struct CodeGen {
bool have_winmain;
bool have_winmain_crt_startup;
bool have_dllmain_crt_startup;
- bool have_pub_panic;
bool have_err_ret_tracing;
bool c_want_stdint;
bool c_want_stdbool;