[Courses] C Programming For Absolute Beginners, Lesson 4: Getting Looped
Christopher Howard
christopher.howard at frigidcode.com
Tue Mar 6 22:27:18 UTC 2012
On 03/06/2012 01:22 PM, Christopher Howard wrote:
>
> code:
> ----------
> gcc -S mysourcecode.c
> ----------
>
Just wanted to mention, to see more efficient generated assembly, you
should include to optimization flag. The non-optimized assembly is
ridiculously verbose.
code:
----------
gcc -S -O2 mysourcecode.c
----------
--
frigidcode.com
indicium.us
More information about the Courses
mailing list