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
28792879 case TypeTableEntryIdUnreachable:
28802880 zig_unreachable();
28812881 }
2882 zig_unreachable();
28822883}
28832884
28842885static 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)
62386239 case TypeTableEntryIdUnreachable:
62396240 zig_unreachable();
62406241 }
6242 zig_unreachable();
62416243}
62426244
62436245uint32_t generic_fn_type_id_hash(GenericFnTypeId *id) {