hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
kernel/arch/x86/um/asm/processor_64.h
....@@ -31,9 +31,6 @@
3131 to->fs = from->fs;
3232 }
3333
34
-#define current_text_addr() \
35
- ({ void *pc; __asm__("movq $1f,%0\n1:":"=g" (pc)); pc; })
36
-
3734 #define current_sp() ({ void *sp; __asm__("movq %%rsp, %0" : "=r" (sp) : ); sp; })
3835 #define current_bp() ({ unsigned long bp; __asm__("movq %%rbp, %0" : "=r" (bp) : ); bp; })
3936