Microchip Technology XC8 Standard Compiler (Workstation) SW006021-1 SW006021-1 User Manual

Product codes
SW006021-1
Page of 518
MPLAB
®
 XC8 C Compiler User’s Guide
DS52053B-page 478
 2012 Microchip Technology Inc.
(1433) function "*" could not be inlined
(Assembler)
The specified function could not be made inline. The function will called in the usual 
way.
int inline getData(int port)   // sorry -- no luck inlining this
{   //...
(1434) missing name after pragma "intrinsic"
(Parser)
The instrinsic pragma needs a function name. This pragma is not needed in most situ-
ation. If you mean to inline a function, see the inline keyword or pragma.
#pragma intrinsic    // oops -- what function is intrinsically called?
(0) delete what ? 
(Libr)
The librarian requires one or more modules to be listed for deletion when using the d 
key, for example:
libr d c:\ht-pic\lib\pic704-c.lib
does not indicate which modules to delete. try something like:
libr d c:\ht-pic\lib\pic704-c.lib wdiv.obj
(0) incomplete ident record 
(Libr)
The IDENT record in the object file was incomplete. Contact Microchip Technical 
Support with details.
(0) incomplete symbol record 
(Libr)
The SYM record in the object file was incomplete. Contact Microchip Technical Support 
with details.
(0) library file names should have.lib extension: * 
(Libr)
Use the .lib extension when specifying a library filename.
(0) module * defines no symbols
 (Libr)
No symbols were found in the module’s object file. This may be what was intended, or 
it may mean that part of the code was inadvertently removed or commented.
(0) replace what ? 
(Libr)
The librarian requires one or more modules to be listed for replacement when using the 
r
 key, for example:
libr r lcd.lib
This command needs the name of a module (.obj file) after the library name.