Aat the end of compiling a project, I got this weird compiler error:
"llvm_transformed_context_ini.c", line 3198: warning: loop not entered at top
"llvm_transformed_context_ini.c", line 3218: warning: loop not entered at top
"llvm_transformed_context_ini.c", line 3237: warning: statement not reached
"llvm_transformed_context_ini.c", line 3248: warning: loop not entered at top
"llvm_transformed_context_ini.c", line 3268: warning: loop not entered at top
"llvm_transformed_context_ini.c", line 3287: warning: statement not reached
op: 2, val: 0
"llvm_transformed_context_ini.c", line 3291: compiler error: wasted space: 1047036660
The line is the last one located in the .c file and has nothing written on it. I tried to delete the line but that didn’t fix the problem.
**_17th_september_EDITED TEXT:
You can download it from here
Can anyone explain it to me ??
Thanks,
Amir
Not sure will it help or not, but you can try to remove all dummy “do..while” loops. To do that you should remove all lines that contains phrase “.. syntactic loop ..” in comment.
For example:
There are a lot of “goto” labels in this code. Probably your current compiler is not able to resolve goto’s in loops.