This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

internal error: compress_section: Compressor could not converge

so i tried to compile a file and i get this message

>> warning: Backtracked too many times
>> internal error: compress_section: Compressor could not converge

>> Compilation failure

i got this when i added 3 new cases to a switch statement. did i hit the switch statement limit?  how do i fix this?

UPDATE:

So after some debugging including all the case statements is not what is causing it, it is the meat of one of the statements. so in that case statement i can get it to compile if i remove  code similar to this

while(isConnected() == FALSE)

{

Task_sleep(100);

}

ChangeState(NEW_STATE);

if i do not include that code it compiles

further information: if i put it in release mode i do not have this problem so it is apparently a debug mode issue