Refer to "10. MESSAGE".
Not defined because of a freestanding environment.
Not defined for the configuration of an interactive device.
The number of significant initial characters (beyond 31) in an identifier without external linkage (6.1.2). |
The entire identifier is handled as meaningful. The length of an identifier is unlimited.
The number of significant initial characters (beyond 6) in an identifier with external linkage (6.1.2). |
The entire identifier is handled as meaningful. The length of an identifier is unlimited.
Uppercase and lowercase characters are distinguished in identifiers.
The members of the source and execution character sets, except as explicitly specified in the Standard (5.2.1). |
The values of elements of the source code and execution character set are ASCII codes, EUC, SJIS, UTF-8, big5, and gb2312.
Japanese and Chinese characters are supported in comments and character strings.
The mapping of members of the source character set (in character constants and string literals) to members of the execution character set (6.1.3.4). |
Associated with the element having the same value.
The value of an integer character constant that contains a character or escape sequence not represented in the basic execution character set or the extended character set for a wide character constant (6.1.3.4). |
Specific non-graphical characters can be expressed by means of extended notation, consisting of a backslash (\) followed by a lower-case letter. The following are available: \a, \b, \f, \n, \r, \t, and \v. There is no other extended notation; other letters following a backslash (\) become that letter.
The value of an integer character constant that contains more than one character or a wide character constant that contains more than one multibyte character (6.1.3.4). |
A integer character constant consisting of up to four characters has a four-byte value with the lower byte being the last character and the upper byte being the first character. A character constant having five or more characters results in an error. A character which is not represented by basic execution environment character set is regarded as a integer character constant having that value. In an invalid escape sequence, the backslash is ignored and the next character is regarded as a integer character constant.
The current locale used to convert multibyte characters into corresponding wide characters (codes) for a wide character constant (6.1.3.4). |
The char type has the same range of values, the same representation format and the same behavior as the signed char type.
Refer to "4.1.3 Internal representation and value area of data".
The result of converting an integer to a shorter signed integer, or the result of converting an unsigned integer to a signed integer of equal length, if the value cannot be represented (6.2.1.2). |
Bit string masked by the width of the conversion target type (with the upper bits truncated).
Arithmetic shift is performed for a shift operator. For other operators, a signed integer is calculated as an unsigned value (as a bit image).
The result of the "%" operator takes the sign of the first operand in the expression.
Arithmetic shift is performed.
The representations and sets of values of the various types of floating-point numbers (6.1.2.5). |
Refer to "4.1.3 Internal representation and value area of data".
The direction of truncation when an integral number is converted to a floating-point number that cannot exactly represent the original value (6.2.1.3). |
As per the option (-Xround) specification and microcomputer settings.
The direction of truncation or rounding when a floating-point number is converted to a narrower floating-point number (6.2.1.4). |
As per the option (-Xround) specification and microcomputer settings.
The type of integer required to hold the maximum size of an array --- that is, the type of the sizeof operator, size_t (6.3.3.4, 7.1.1). |
Integer-to-pointer conversion result
If the size of an integer type is larger than that of a pointer type, the lower-byte value of the integer type is used. If the size of the integer type is equal to that of the pointer type, the bit pattern of the integer type is retained as is. If the size of the integer type is smaller than that of the pointer type, the resultant value of an extension to an int type is retained as is.
Pointer-to-integer conversion result
If the size of a pointer type is larger than that of an integer type, the lower-byte value of the pointer type is used. If the size of the pointer type is equal to that of the integer type, the bit pattern of the pointer type is retained as is. If the size of a pointer type is smaller than that of an integer type, the zero-extended value of the pointer type is used.
The type of integer required to hold the difference between two pointers to members of the same array, ptrdiff_t (6.3.4, 7.1.1). |
The extent to which objects can actually be placed in registers by use of the register storage-class specifier (6.5.1). |
Optimize for the fastest possible access, regardless of whether there is a register specifier.
If the value of a union member is stored in a different member, the value will be stored in accordance with the alignment condition. As a result, when a union member is accessed using a member of a different type, the internal representation of the data will be of the type of the access.
Refer to "4.1.3 Internal representation and value area of data".
Whether a "plain" int bit-field is treated as a signed int bit-field or as an unsigned int bit-field (6.5.2.1). |
Treated as a signed int type. The most significant bit of the bit field is treated as a sign bit.
Allocated from the lower order. Selectable by option -Xbit_order or #pragma bit_order.
A bit-field cannot straddle a strage-unit boundary, but it is allocated to the next area.
signed int type. However, the minimum type that an enumerated type fits in if option -Xenum_type=auto is specified.
Although the access width, and order and number of accesses are as described in the C source, this does not apply to those accesses to a type for which the microcomputer does not have a corresponding instruction.
The maximum number of declarators that may modify an arithmetic, structure, or union type (6.5.4). |
Whether the value of a single-character character constant in a constant expression that controls conditional inclusion matches the value of the same character constant in the execution character set. Whether such a character constant may have a negative value (6.8.1). |
A value for the character constant specified in conditional inclusion is equal to the character constant value that appears in other expressions.
A character constant can be a negative value.
Folders are searched in this order and a file having the same name in the folder is identified as the header.
1. Folder specified by the path (if it is full-path)
2. Folder specified by option -I
3. Standard include file folder
1. Folder specified by the path (if it is full-path)
2. Folder where source file exists
4. Standard include file folder
A character string described in the #include is interpreted as the character code specified as the source character set and is associated with a header name or an external source file name.
Refer to "4.2.6 Using extended language specifications".
The definitions for __DATE__ and __TIME__ when respectively, the date and time of translation are not available (6.8.8). |
A date and time are always obtained.
The displayed diagnostic message is as follows:
Assertion failed: expression, file file name, line line number
The termination behavior depends on how the abort function is implemented.
The sets of characters tested for by the isalnum, isalpha, iscntrl, islower, isprint, and isupper functions (7.3.1). |
unsigned char type (0 to 255) and EOF (-1).
Refer to "7.4.10 Mathematical functions".
Whether the mathematics functions set the integer expression errno to the value of the macro ERANGE on underflow range errors (7.5.1). |
ERANGE is set in errno in case of an underflow.
Whether a domain error occurs or zero is returned when the fmod function has a second argument of zero (7.5.6.4). |
A domain error is generated. For details, see the description about the fmod functions.
The signal handling functions are not supported.
The signal handling functions are not supported.
The default handling and the handling at program startup for each signal recognized by the signal function (7.7.1.1). |
The signal handling functions are not supported.
If the equivalent of signal(sig, SIG_DFL); is not executed prior to the call of a signal handler, the blocking of the signal that is performed (7.7.1.1). |
The signal handling functions are not supported.
Whether the default handling is reset if the SIGILL signal is received by a handler specified to the signal function (7.7.1.1). |
The signal handling functions are not supported.
The last line does not need to end in a newline character.
Whether space characters that are written out to a text stream immediately before a new-line character appear when read in (7.9.2). |
Space characters appear when data is read.
Whether the file position indicator of an append mode stream is initially positioned at the beginning or end of the file (7.9.3). |
The file handling functions are not supported.
Whether a write on a text stream causes the associated file to be truncated beyond that point (7.9.3). |
The file handling functions are not supported.
The file handling functions are not supported.
The file handling functions are not supported.
The file handling functions are not supported.
The file handling functions are not supported.
The file handling functions are not supported.
The file handling functions are not supported.
The interpretation of a - character that is neither the first nor the last character in the scan list for %[ conversion in the fscanf function (7.9.6.2). |
Refer to "sscanf" in "7.4.7 Standard I/O functions".
The value to which the macro errno is set by the fgetpos or ftell function on failure (7.9.9.1, 7.9.9.4). |
The file handling functions are not supported.
Refer to the description of perror in "7.4.7 Standard I/O functions".
The calloc or malloc function returns the secured pointer, assuming the request size is 8. The realloc function returns NULL.
The file handling functions are not supported.
The status returned by the exit function if the value of the argument is other than zero, EXIT_SUCCESS, or EXIT_FAILURE (7.10.4.3). |
Not defined because of a freestanding environment.
The set of environment names and the method for altering the environment list used by the getenv function (7.10.4.4). |
The getenv function is not supported.
The system function is not supported.
Refer to the description of the strerror function in "7.4.3 Character string functions".
The table below shows the translation limits of CC-RH.
The upper limit depends on the memory situation of the host environment for the item "No limit".