Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 
0003 #include <asm/asm.h>
0004 #include <asm/export.h>
0005 #include <linux/linkage.h>
0006 
0007 /*
0008  * unsigned long native_save_fl(void)
0009  */
0010 .pushsection .noinstr.text, "ax"
0011 SYM_FUNC_START(native_save_fl)
0012     pushf
0013     pop %_ASM_AX
0014     RET
0015 SYM_FUNC_END(native_save_fl)
0016 .popsection
0017 EXPORT_SYMBOL(native_save_fl)