For assembly files without .intel_syntax or .att_syntax directives, allow the
-masm= flag to supply a default assembly dialect. For example,
C:\TMP> type intel.s
.text
mov al,0
C:\TMP> clang -masm=intel -c intel.s
Without this patch, one would need to pass an -mllvm -x86-asm-syntax= flag directly to the backend.
C:\TMP> clang -mllvm --x86-asm-syntax=intel -c intel.s
Does it seem acceptable to expose -masm= flag as a way to configure the input assembly syntax?
Fix the param indentation.