PRB: C1004 or C1060 Error Generated by Inline _asm Call (149615)



The information in this article applies to:

  • Microsoft Visual C++, 32-bit Enterprise Edition 5.0
  • Microsoft Visual C++, 32-bit Enterprise Edition 6.0
  • Microsoft Visual C++, 32-bit Professional Edition 2.0
  • Microsoft Visual C++, 32-bit Professional Edition 2.1
  • Microsoft Visual C++, 32-bit Professional Edition 2.2
  • Microsoft Visual C++, 32-bit Professional Edition 4.0
  • Microsoft Visual C++, 32-bit Professional Edition 4.1
  • Microsoft Visual C++, 32-bit Professional Edition 5.0
  • Microsoft Visual C++, 32-bit Professional Edition 6.0
  • Microsoft Visual C++, 32-bit Learning Edition 4.0
  • Microsoft Visual C++, 32-bit Learning Edition 6.0

This article was previously published under Q149615

SYMPTOMS

A C1004 (Unexpected End of File) or C1060 (Compiler is out of heap space) error may occur when comments are misused within inline assembly code.

STATUS

This behavior is by design.

MORE INFORMATION

Semicolons are used in assembly code to begin source comments. They behave exactly the same way as using the C++ comment specifier (//). All text following a semicolon is considered to be a comment. Comments terminate at the end of the current line.

Sample Code

void main(void)
{
   _asm { int 3; }    // The closing curly brace is ignored because it's
                      // part of the assembly comment line

   _asm {             // This code works because no valid code follows
      int 3;          // the semicolon comment specifier
   }

   _asm { int 3 }     // This also works and is valid code
}
				

Modification Type:MinorLast Reviewed:7/5/2005
Keywords:kbCompiler kbprb kbtshoot KB149615