Delete debugging messages left in by mistake.
authormjsousa
Wed, 07 Aug 2013 10:34:57 +0100
changeset 829 6e39eea5f5d0
parent 828 a5f08df62002
child 830 6f45ec6ed011
Delete debugging messages left in by mistake.
stage3/print_datatypes_error.cc
--- a/stage3/print_datatypes_error.cc	Wed Aug 07 10:24:32 2013 +0100
+++ b/stage3/print_datatypes_error.cc	Wed Aug 07 10:34:57 2013 +0100
@@ -134,10 +134,6 @@
 	bool function_invocation_error = false;
 	const char *POU_str = NULL;
 
-debug_c::print("print_datatypes_error_c::handle_function_invocation() CALLED!\n");
-debug_c::print(fcall);
-
-
 	if (generic_function_call_t::POU_FB       == fcall_data.POU_type)  POU_str = "FB";
 	if (generic_function_call_t::POU_function == fcall_data.POU_type)  POU_str = "function";
 	if (NULL == POU_str) ERROR;
@@ -208,11 +204,6 @@
 		}
 	}
 	if (NULL != fcall_data.nonformal_operand_list) {
-debug_c::print("print_datatypes_error_c::handle_function_invocation() CALLING  ---> fcall_data.nonformal_operand_list->accept(*this)!\n");
-debug_c::print_ast(fcall_data.nonformal_operand_list);
-debug_c::print("print_datatypes_error_c::handle_function_invocation() LIST_END\n");
-		fcall_data.nonformal_operand_list->accept(*this);
-debug_c::print("print_datatypes_error_c::handle_function_invocation() RETURNED <--- fcall_data.nonformal_operand_list->accept(*this)!\n");
 		if (f_decl)
 			for (int i = 1; (param_value = fcp_iterator.next_nf()) != NULL; i++) {
 		  		/* TODO: verify if it is lvalue when INOUT or OUTPUT parameters! */