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

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Error and Warning Messages(369) signed bitfields not supported (Parser)Only unsigned bitfields are supported. If a bitfield is declared to be type int, the compiler stilltreats it as unsigned, e.g.:struct {signed int sign: 1; /* this must be unsigned */signed int value: 15;} ;(371) missing basic type: int assumed (Parser)This declaration does not include a basic type, so int has been assumed. This declaration is notillegal, but it is preferable to include a basic type to make it clear what is intended, e.g.:char c;i; /* don’t let the compiler make assumptions, use : int i */func(); /* ditto, use: extern int func(int); */(372) , expected (Parser)A comma was expected here. This could mean you have left out the comma between two identifiersin a declaration list. It may also mean that the immediately preceding type name is misspelled, andhas thus been interpreted as an identifier, e.g.:unsigned char a;unsigned chat b; /* thinks: chat & b are unsigned, but where is the comma? */(375) unknown FNREC type * (Linker)This is an internal compiler error. Contact HI-TECH Software technical support with details.(376) bad non-zero node in call graph (Linker)The linker has encountered a top level node in the call graph that is referenced from lower down inthe call graph. This probably means the program has indirect recursion, which is not allowed whenusing a compiled stack.(379) bad record type * (Linker)This is an internal compiler error. Ensure the object file is a valid HI-TECH object file. ContactHI-TECH Software technical support with details.276

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

Saved successfully!

Ooh no, something went wrong!