11.07.2015 Views

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Error and Warning Messages(742) function "*" argument evaluation overlapped (Linker)A function call involves arguments which overlap between two functions. This could occur with acall like:void fn1(void){fn3( 7, fn2(3), fn2(9)); /* Offending call */}char fn2(char fred){return fred + fn3(5,1,0);}char fn3(char one, char two, char three){return one+two+three;}where fn1 is calling fn3, and two arguments are evaluated by calling fn2, which in turn calls fn3.The program structure should be modified to prevent this type of call sequence.(744) static object has zero size: * (Code Generator)A static object has been declared, but has a size of zero.(745) nodecount = * (Code Generator)This is an internal compiler error. Contact HI-TECH Software technical support with details.(747) unrecognized option to -Z: * (Code Generator)This is an internal compiler error. Contact HI-TECH Software technical support with details.(748) variable may be used before set: * (Code Generator)This variable may be used before it has been assigned a value. Since it is an auto variable, this willresult in it having a random value, e.g.:304void main(void){int a;

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!