authorgravatar for thejoshwolfe@gmail.comJosh Wolfe <thejoshwolfe@gmail.com> 2016-04-07 18:02:30-07:00
committergravatar for thejoshwolfe@gmail.comJosh Wolfe <thejoshwolfe@gmail.com> 2016-04-07 18:02:30-07:00
logf6edba4a872e2c5781bb6cb05f66a57e16455f15
tree0523f868f948448be12432a77dd675480ed530ba
parent28ad4e6d83e307b814d76f53795fa5ff61bbdb2f

fix gcc compile errors


1 files changed, 2 insertions(+), 0 deletions(-)

src/analyze.cpp+2
...@@ -2879,6 +2879,7 @@ static bool const_values_equal(ConstExprValue *a, ConstExprValue *b, TypeTableEn...@@ -2879,6 +2879,7 @@ static bool const_values_equal(ConstExprValue *a, ConstExprValue *b, TypeTableEn
2879 case TypeTableEntryIdUnreachable:2879 case TypeTableEntryIdUnreachable:
2880 zig_unreachable();2880 zig_unreachable();
2881 }2881 }
2882 zig_unreachable();
2882}2883}
28832884
2884static TypeTableEntry *analyze_bool_bin_op_expr(CodeGen *g, ImportTableEntry *import, BlockContext *context,2885static TypeTableEntry *analyze_bool_bin_op_expr(CodeGen *g, ImportTableEntry *import, BlockContext *context,
...@@ -6238,6 +6239,7 @@ static uint32_t hash_const_val(TypeTableEntry *type, ConstExprValue *const_val)...@@ -6238,6 +6239,7 @@ static uint32_t hash_const_val(TypeTableEntry *type, ConstExprValue *const_val)
6238 case TypeTableEntryIdUnreachable:6239 case TypeTableEntryIdUnreachable:
6239 zig_unreachable();6240 zig_unreachable();
6240 }6241 }
6242 zig_unreachable();
6241}6243}
62426244
6243uint32_t generic_fn_type_id_hash(GenericFnTypeId *id) {6245uint32_t generic_fn_type_id_hash(GenericFnTypeId *id) {