diff options
author | WANG Xuerui <git@xen0n.name> | 2022-07-26 17:57:21 +0200 |
---|---|---|
committer | Huacai Chen <chenhuacai@loongson.cn> | 2022-07-29 12:22:32 +0200 |
commit | 1fdb9a92495a6b6996530d27781892796e22f08b (patch) | |
tree | 05a8a33f18dd9b21e06402162d5542c3406803d6 /arch/loongarch/lib/copy_user.S | |
parent | LoongArch: Simplify "BLT foo, zero" with BLTZ (diff) | |
download | linux-1fdb9a92495a6b6996530d27781892796e22f08b.tar.xz linux-1fdb9a92495a6b6996530d27781892796e22f08b.zip |
LoongArch: Simplify "BGT foo, zero" with BGTZ
Support for the syntactic sugar is present in upstream binutils port
from the beginning. Use it for shorter lines and better consistency.
Generated code should be identical.
Signed-off-by: WANG Xuerui <git@xen0n.name>
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
Diffstat (limited to 'arch/loongarch/lib/copy_user.S')
-rw-r--r-- | arch/loongarch/lib/copy_user.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/loongarch/lib/copy_user.S b/arch/loongarch/lib/copy_user.S index 9ae507f851b5..97d20327a69e 100644 --- a/arch/loongarch/lib/copy_user.S +++ b/arch/loongarch/lib/copy_user.S @@ -35,7 +35,7 @@ SYM_FUNC_START(__copy_user) addi.d a0, a0, 1 addi.d a1, a1, 1 addi.d a2, a2, -1 - bgt a2, zero, 1b + bgtz a2, 1b 3: move a0, a2 jr ra |