zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5dddb45ec71ae93750fddda932ef8b7d2ffa293d (tree)
parent 0a922d3bca7fc65a9280f4869afce73a55b9c9cf
Author: Andrew Kelley <superjoe30@gmail.com>
Date:   Tue, 22 Aug 2017 11:54:58 -0400

fix compiler test errors

closes #428

Thanks Marc Tiehuis for diagnosing this bug

Diffstat:
Msrc/codegen.cpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/codegen.cpp b/src/codegen.cpp @@ -3951,6 +3951,7 @@ static void do_code_gen(CodeGen *g) { assert(const_val->special != ConstValSpecialRuntime); TypeTableEntry *var_type = g->builtin_types.entry_f128; ConstExprValue coerced_value; + coerced_value.special = ConstValSpecialStatic; coerced_value.type = var_type; coerced_value.data.x_f128 = bigfloat_to_f128(&const_val->data.x_bigfloat); LLVMValueRef init_val = gen_const_val(g, &coerced_value);