Remove explicit .intel_syntax directive.

It is now default, and the new compiler generated a lot of warnings now
that Intel syntax has (luckily) become the default.
This commit is contained in:
4lDO2
2021-06-18 09:20:13 +02:00
parent 1cf5f5ea22
commit ecfcedb9bf

View File

@@ -202,9 +202,7 @@ impl InterruptErrorStack {
macro_rules! intel_asm {
($($strings:expr,)+) => {
global_asm!(concat!(
".intel_syntax noprefix\n",
$($strings),+,
".att_syntax prefix\n",
));
};
}