mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
21 lines
286 B
ArmAsm
21 lines
286 B
ArmAsm
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (C) 2023 Rivos Inc.
|
||
|
*/
|
||
|
|
||
|
.text
|
||
|
.global test_set32
|
||
|
test_set32:
|
||
|
lw a0, set32
|
||
|
la t0, set32
|
||
|
#ifndef CONFIG_32BIT
|
||
|
slli t0, t0, 32
|
||
|
srli t0, t0, 32
|
||
|
#endif
|
||
|
sub a0, a0, t0
|
||
|
ret
|
||
|
.data
|
||
|
set32:
|
||
|
.reloc set32, R_RISCV_SET32, set32
|
||
|
.word 0
|