Microchip Technology XC8 Standard Compiler (Workstation) SW006021-1 SW006021-1 ユーザーズマニュアル

製品コード
SW006021-1
ページ / 518
MPLAB
®
 XC8 C Compiler User’s Guide
DS52053B-page 434
 2012 Microchip Technology Inc.
(743) divide by zero 
(Code Generator)
An expression involving a division by zero has been detected in your code.
(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 Microchip Technical Support with details.
(746) object "*" qualified const, but not initialized 
(Code Generator)
An object has been qualified as const, but there is no initial value supplied at the def-
inition. As this object cannot be written by the C program, this may imply the initial value 
was accidently omitted.
(747) unrecognized option "*" to -Z 
(Code Generator)
This is an internal compiler error. Contact Microchip 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 vari-
able, this will result in it having a random value, for example:
void main(void)
{
  int a;
  if(a)         /* oops -- a has never been assigned a value */
    process();
}
(749) unknown register name "*" used with pragma 
(Linker)
This is an internal compiler error. Contact Microchip Technical Support with details.