From ffb4852012509327c646c9899259e894965b2259 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Fri, 7 Apr 2017 00:33:19 -0400 Subject: add compile error for the bug of unable to call var ags at compile time See #313 --- src/ir.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/ir.cpp') diff --git a/src/ir.cpp b/src/ir.cpp index c7c9c6490c..1176ac2845 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -8252,6 +8252,13 @@ static TypeTableEntry *ir_analyze_fn_call(IrAnalyze *ira, IrInstructionCall *cal return ira->codegen->builtin_types.entry_invalid; } + if (fn_proto_node->data.fn_proto.is_var_args) { + ir_add_error(ira, &call_instruction->base, + buf_sprintf("compiler bug: unable to call var args function at compile time. https://github.com/andrewrk/zig/issues/313")); + return ira->codegen->builtin_types.entry_invalid; + } + + for (size_t call_i = 0; call_i < call_instruction->arg_count; call_i += 1) { IrInstruction *old_arg = call_instruction->args[call_i]->other; if (type_is_invalid(old_arg->value.type)) -- cgit v1.2.3