Skip to content
Snippets Groups Projects
Commit f17e6634 authored by Damien George's avatar Damien George
Browse files

py: Issue an error when compiling Viper functions with more than 4 args.

Otherwise it can be very hard to track down bugs.
parent e45c1dbd
No related branches found
No related tags found
No related merge requests found
......@@ -675,6 +675,12 @@ STATIC void emit_native_start_pass(emit_t *emit, pass_kind_t pass, scope_t *scop
if (emit->do_viper_types) {
// right now we have a restriction of maximum of 4 arguments
if (scope->num_pos_args >= 5) {
EMIT_NATIVE_VIPER_TYPE_ERROR(emit, "Viper functions don't currently support more than 4 arguments (while compiling '%q')", scope->simple_name); return;
return;
}
// entry to function
int num_locals = 0;
if (pass > MP_PASS_SCOPE) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment