Article ID: 119873 - Last Review: July 5, 2005 - Revision: 1.1

FIX: Incorrect Use of #pragma Pack Causes C1001 Errors

This article was previously published under Q119873

On This Page

Expand all | Collapse all

SYMPTOMS

When compiling code that uses #pragma pack() to pop an ID that has not been pushed after successfully popping an ID that was pushed, the compilers listed above will generate:
fatal error C1001: INTERNAL COMPILER ERROR
In addition, this error will be followed by a message similar to

(compiler file 'msc1.cpp', line 902)
Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information
NOTE: In Microsoft Visual Studio .NET, you receive a C4160 warning instead of the error message, so you can compile and run the program.

RESOLUTION

Pop only IDs that have been previously pushed onto the compiler's internal stack.

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article.

This problem was corrected in Microsoft Visual C++ .NET.

MORE INFORMATION

The following sample code demonstrates the bug:

Sample Code

/* packfail.c

Compile options needed: none
*/ 

#pragma pack(push, a)
#pragma pack(push, b, 4)
#pragma pack(pop, b)
#pragma pack(pop, value)

				

APPLIES TO
  • Microsoft Visual C++ 1.0 Professional Edition
  • Microsoft Visual C++ 2.0 Professional Edition
  • Microsoft Visual C++ 4.0 Standard Edition
  • Microsoft Visual C++ 4.1 Subscription
  • Microsoft Visual C++ 4.2 Professional Edition
  • Microsoft Visual C++ 5.0 Standard Edition
  • Microsoft Visual C++ 6.0 Service Pack 5
Keywords: 
kbbug kbcompiler kbfix kbnoupdate KB119873
Retired KB ArticleRetired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.
 

Article Translations