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

製品コード
SW006021-1
ページ / 518
Error and Warning Messages
 2012 Microchip Technology Inc.
DS52053B-page 457
(1059) rewrite loop 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.
(1081) static initialization of persistent variable "*" 
(Parser, Code Generator)
A persistent variable has been assigned an initial value. This is somewhat contradictory 
as the initial value will be assigned to the variable during execution of the compiler’s 
startup code; however, the persistent qualifier requests that this variable shall be 
unchanged by the compiler’s startup code.
(1082) size of initialized array element is zero 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.
(1088) function pointer "*" is used but never assigned a value 
(Code Generator)
A function call involving a function pointer was made, but the pointer was never 
assigned a target address, for example:
void (*fp)(int);
fp(23);     /* oops -- what function does fp point to? */
(1089) recursive function call to "*" 
(Code Generator)
A recursive call to the specified function has been found. The call may be direct or indi-
rect (using function pointers) and may be either a function calling itself, or calling 
another function whose call graph includes the function under consideration.
(1090) variable "*" is not used 
(Code Generator)
This variable is declared but has not been used by the program. Consider removing it 
from the program.
(1091) main function "*" not defined 
(Code Generator)
The main function has not been defined. Every C program must have a function called 
main.
(1094) bad derived type 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.
(1095) bad call to typeSub() 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.
(1096) type should be unqualified 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.
(1097) unknown type string "*" 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.
(1098) conflicting declarations for variable "*" (*:*) 
(Parser, Code Generator)
Differing type information has been detected in the declarations for a variable, or 
between a declaration and the definition of a variable, for example:
extern long int test;
int test;    /* oops -- which is right? int or long int ? */
(1104) unqualified error 
(Code Generator)
This is an internal compiler error. Contact Microchip Technical Support with details.