mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
12 lines
313 B
ArmAsm
12 lines
313 B
ArmAsm
![]() |
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
/*
|
||
|
* 32-bit assembly helpers for asm operations that lack support in both gcc and
|
||
|
* clang. For example, clang asm does not support segment prefixes.
|
||
|
*/
|
||
|
.global dereference_seg_base
|
||
|
dereference_seg_base:
|
||
|
mov %fs:(0), %eax
|
||
|
ret
|
||
|
|
||
|
.section .note.GNU-stack,"",%progbits
|