Merge tag 'x86-entry-2021-02-24' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-microblaze.git] / arch / x86 / kernel / irqflags.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 #include <asm/asm.h>
4 #include <asm/export.h>
5 #include <linux/linkage.h>
6
7 /*
8  * unsigned long native_save_fl(void)
9  */
10 SYM_FUNC_START(native_save_fl)
11         pushf
12         pop %_ASM_AX
13         ret
14 SYM_FUNC_END(native_save_fl)
15 EXPORT_SYMBOL(native_save_fl)