Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
>
Why does not Visual C++ support the...

Why does not Visual C++ support the inline assembler for Intel 64 and IA-64 anymore?

Oct 30 2010
Author:

Giving up the support of the inline assembler code (through the key word __asm) when compiling applications for the 64-bit platforms Intel 64 and IA-64 is most probably related to the wish of the Microsoft company to simplify the optimizer's work and development of new versions of the compiler for Visual C++. Inline assembler code limits portability of software being developed while optimization by its means is rarely reasonable nowadays since the compiler creates rather efficient code most times.

When the functionality you need cannot be implemented by means of the C++ code, use intrinsic functions to replace assembler fragments or link external asm-files to the project.

References

Popular related articles


Comments (0)

Next comments next comments
close comment form