Specifications

Error! Style not defined. 751
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 751 of 67 Printed: 10/09/00 02:49 PM
HI4050
(level 4)
operator : different code attributes
The function-pointer expressions used with operator had different code attributes. The
attribute involved is either _export or _loadds.
This is a warning and not an error, because _export and _loadds affect only entry
sequences and not calling conventions.
HI4051
(level 2)
type conversion, possible loss of data
Two data items in an expression had different base types, causing the type of one item
to be converted. During the conversion, a data item was truncated.
HI4052 invalid numerical argument string
A numerical argument was expected instead of the given string.
HI4053
(level 1)
at least one void operand
An expression with type void was used as an operand.
The expression was evaluated using an undefined value for the void operand.
HI4063
(level 2)
function : function too large for post-optimizer
Not enough space was available to optimize the given function.
One of the following may be a solution:
u Recompile with fewer optimizations.
u Divide the function into two or more smaller functions.
HI4066
(level 2)
local symbol-table overflow - some local symbols may be missing in listings
The listing generator ran out of heap space for local variables, so the source listing may
not contain symbol-table information for all local variables.
HI4067
(level 1)
unexpected characters following directive directive - newline expected
Extra characters followed a preprocessor directive and were ignored. This warning
appears only when compiling with the /Za option.
For example, the following code causes this warning:
#endif NO_EXT_KEYS
To remove the warning, compile with /Ze or use comment delimiters:
#endif /* NO_EXT_KEYS */
HI4071
(level 2)
function : no function prototype given
The given function was called before the compiler found the corresponding function
prototype.
The function will be called using the default rules for calling a function without a
prototype.