Search notes:

gcc -masm

Select the (dis-)assembly dialect.
Apparently, on x86 architectures, att (default, AT&T) and intel are supported.
gcc -masm=intel -S input.c

Misc

-masm is a GNU option and has nothing to do with Microsoft's Macro Assembler (masm).

See also

-S
GCC options
GNU assembler

Index