comparison parser.c @ 25:9749109b3198

Fixed spelling error in parser error message.
author William Morgan <wbm25+rhopehg@drexel.edu>
date Thu, 25 Jun 2009 02:15:36 +0000
parents 76568becd6d6
children
comparison
equal deleted inserted replaced
24:8b2b3f4a2a58 25:9749109b3198
701 { 701 {
702 //printf("Block Worker: %d\nBlock Output: %d\n", block_workers[block_depth-1], block_output[block_depth-1]); 702 //printf("Block Worker: %d\nBlock Output: %d\n", block_workers[block_depth-1], block_output[block_depth-1]);
703 if(worker_expr && num_inputs < expected_in) 703 if(worker_expr && num_inputs < expected_in)
704 { 704 {
705 if(block_attach) 705 if(block_attach)
706 printf("Warning: Worker %s is attached to block both explicityly and implicity (i.e. at least one input was stated as ~, but there are still unsatisfied inputs)\n", workername); 706 printf("Warning: Worker %s is attached to block both explicitly and implicitly (i.e. at least one input was stated as ~, but there are still unsatisfied inputs)\n", workername);
707 if(expected_in - num_inputs > 1) 707 if(expected_in - num_inputs > 1)
708 printf("Warning: More than one input of worker %s implicitly tied to block (%d inputs implicitly tied)", workername, expected_in - num_inputs); 708 printf("Warning: More than one input of worker %s implicitly tied to block (%d inputs implicitly tied)", workername, expected_in - num_inputs);
709 for(i = num_inputs; i < expected_in; ++i) 709 for(i = num_inputs; i < expected_in; ++i)
710 add_wire(def, block_workers[block_depth-1], block_output[block_depth-1], this_worker, i); 710 add_wire(def, block_workers[block_depth-1], block_output[block_depth-1], this_worker, i);
711 711