HI everybody. i've a problem with my compiler.when i run any program or compile there is msg on screen "checking dependecie".Thi s cause to slow program execution.How can i fix this problem.thanx in advance.
Checking dependencies
Collapse
X
-
What compiler are you using?
I believe what you're referring to is the compiler checking the dependencies of the assembly code. You can't avoid that, it has to be done. You're code isn't run exactly how you write it. With the compiler it attempts to enhance the speed of your code by ordering instructions more efficiently. However, you will have instructions that depend on the result or use of previous instructions, so these dependencies must be checked, to make your code more efficient as well as to avoid any major conflicts between instructions. -
Thanks sir.but it is the compile's dependencie of assembly.i'm using borland turbo c++ compiler.If i write a single line code till this error occur.but i have already faced this kind of problem many times before that.one more thing if i reinstall my compiler then there will be no checking dependecie.plz help!Comment
Comment