Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _LINUX_INSTRUCTION_POINTER_H
0003 #define _LINUX_INSTRUCTION_POINTER_H
0004 
0005 #define _RET_IP_        (unsigned long)__builtin_return_address(0)
0006 #define _THIS_IP_  ({ __label__ __here; __here: (unsigned long)&&__here; })
0007 
0008 #endif /* _LINUX_INSTRUCTION_POINTER_H */