Generate Assembly From C++ Code in Visual Studio
Sometimes we want to see the assembly code generated from a piece of C++ code. It could be very helpful for:
Better understanding about how compiler optimize our code
Better understanding about the dark side of the programming language that we are using to avoid the pitfalls.
Finding performance hints.
Debugging really tricky defects.
And I [...]