People used to gcc/clang inline assembly may try using the .intel_syntax or .att_syntax directives directly in the assembly string, which can cause issues. Ideally, we should detect attempts to use those directives. Attempting to use .intel_syntax should generate an error stating that that's the default. Attempting to use .att_syntax should generate an error and point to the att_syntax option, ideally with a rustfix-applicable suggestion.
People used to gcc/clang inline assembly may try using the
.intel_syntaxor.att_syntaxdirectives directly in the assembly string, which can cause issues. Ideally, we should detect attempts to use those directives. Attempting to use.intel_syntaxshould generate an error stating that that's the default. Attempting to use.att_syntaxshould generate an error and point to theatt_syntaxoption, ideally with a rustfix-applicable suggestion.