Percent Character Not Allowed in Identifiers in MASM 6.0 (69988)



The information in this article applies to:

  • Microsoft Macro Assembler (MASM) 6.0
  • Microsoft Macro Assembler (MASM) 6.0a
  • Microsoft Macro Assembler (MASM) 6.0b
  • Microsoft Macro Assembler (MASM) 6.1
  • Microsoft Macro Assembler (MASM) 6.1a
  • Microsoft Macro Assembler (MASM) 6.11

This article was previously published under Q69988

SUMMARY

In the Macro Assembler (MASM) version 6.0 and later, the percent character "%" is not allowed in any identifier name. The valid characters that can be used in an identifier are listed on page 13 of the "Macro Assembler 6.0 Programmer's Guide."

MORE INFORMATION

The following is a possible error that may occur if you attempt to use an identifier containing a percent character:
file.asm(6): error A2009: syntax error in expression
Because the percent character is also used as the expansion operator (see page 238 of the "Macro Assembler 6.0 Programmer's Guide"), the assembler will not accept the percent character in identifiers, even in MASM 5.1 compatibility mode (selected by using the /Zm switch).

The Macro Assembler version 5.1 does not document the percent character as being valid in identifiers, but it was accepted by the assembler.

One workaround for this situation is to remove the percent character from the identifier.

Modification Type:MinorLast Reviewed:11/19/2003
Keywords:KB69988