kevaundray commented on issue #6188:
For more context: https://gcc.gnu.org/onlinedocs/gcc-7.2.0/gcc/Alternate-Keywords.html#Alternate-Keywords
Note that the asm keyword is a GNU extension. Use
__
asm__
instead of asm when your code is compiled with -ansi and the various -std options. The Linux kernel uses both__
asm__
and asm for compatibility.
Last updated: Nov 22 2024 at 17:03 UTC