previous | start | next

Compiler

The actual C compiler is invoked to translate the output of the preprocessor into an equivalent assembly language program (sumFirst.s). Each assembler instruction corresponds to a machine instruction, but the operation code (op code) is a human readable string such as "addl" or "jmp".

The gcc command can produce the assembly file sumFirst.s and the stop without producing the object file by:

  gcc -S sumFirst.c      
   


previous | start | next