Comment on Understanding C by learning assemblyparentComments−tsahyt13ygcc -S is usually preferable, since you don't get all the code produced/included by the linker to get the thing running.−dbaupp13yAnd using gcc -S allows you to get a few extra annotations (variable names etc.) using the -fverbose-asm flag.
Comments
gcc -S is usually preferable, since you don't get all the code produced/included by the linker to get the thing running.
And using gcc -S allows you to get a few extra annotations (variable names etc.) using the -fverbose-asm flag.