[Prev][Next][Index]
No Subject
- Date: Wed, 13 Jul 1994 15:11:01 -0500
- From: "Shelby Yang" <yang@cs.indiana.edu>
- To: sage-bugs@rainier.cica.indiana.edu, vmenkov@cs.indiana.edu
Here is what caused Vladimir's problem. In his pC++ main program, he had
void Processor_Main()
{
seg_bodies = 8, num_of_segments = 8;
Processors P;
...
}
The compiler generated: "Warning : Statement does not allow code generation
line 250," and the rest of the main program was not processed (unchanged
in temp.C). Replacing the comma with a semicolon cures the problem. But
I think this is a bug in pC++ parser.
Shelby