From 174cc03edcd6861ba416cc1afb19d4d43933ac84 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 30 Mar 2010 23:37:51 -1000 Subject: [PATCH] Test that main doesn't take any parameters. Fixes main2.vert. --- ast_to_hir.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ast_to_hir.cpp b/ast_to_hir.cpp index 1f81a94..a0fe37b 100644 --- a/ast_to_hir.cpp +++ b/ast_to_hir.cpp @@ -1462,6 +1462,12 @@ ast_function_definition::hir(exec_list *instructions, _mesa_glsl_error(& loc, state, "main() must return void"); } + + if (!parameters.is_empty()) { + YYLTYPE loc = this->get_location(); + + _mesa_glsl_error(& loc, state, "main() must not take any parameters"); + } } /* Finish storing the information about this new function in its signature. -- 2.7.4