diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-09-10 09:46:15 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2018-09-10 09:46:15 -0400 |
| commit | fbe5737c84c783cd31e6e2d595fc47eb782c5e3c (patch) | |
| tree | 177994e0311f406f95273af408dd13b942acc921 /src/all_types.hpp | |
| parent | c0bdcc7417a23d338dc1df6bd74b30fe6e3d1a1a (diff) | |
| download | zig-fbe5737c84c783cd31e6e2d595fc47eb782c5e3c.tar.gz zig-fbe5737c84c783cd31e6e2d595fc47eb782c5e3c.zip | |
stage1: always optimize blake and softfloat even in debug mode
Diffstat (limited to 'src/all_types.hpp')
| -rw-r--r-- | src/all_types.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/all_types.hpp b/src/all_types.hpp index 0b0de58791..2dfbcaaa62 100644 --- a/src/all_types.hpp +++ b/src/all_types.hpp @@ -10,6 +10,7 @@ #include "list.hpp" #include "buffer.hpp" +#include "cache_hash.hpp" #include "zig_llvm.h" #include "hash_map.hpp" #include "errmsg.hpp" @@ -1613,7 +1614,10 @@ struct CodeGen { ZigType *entry_promise; } builtin_types; + CacheHash cache_hash; + //////////////////////////// Participates in Input Parameter Cache Hash + Buf *compiler_id; ZigList<LinkLib *> link_libs_list; // add -framework [name] args to linker ZigList<Buf *> darwin_frameworks; |
