aboutsummaryrefslogtreecommitdiffstats
path: root/arch/h8300/lib/abs.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/h8300/lib/abs.S')
-rw-r--r--arch/h8300/lib/abs.S21
1 files changed, 0 insertions, 21 deletions
diff --git a/arch/h8300/lib/abs.S b/arch/h8300/lib/abs.S
deleted file mode 100644
index ddd1fb3d01ad..000000000000
--- a/arch/h8300/lib/abs.S
+++ /dev/null
@@ -1,21 +0,0 @@
1;;; abs.S
2
3#include <asm/linkage.h>
4
5#if defined(__H8300H__)
6 .h8300h
7#endif
8#if defined(__H8300S__)
9 .h8300s
10#endif
11 .text
12.global _abs
13
14;;; int abs(int n)
15_abs:
16 mov.l er0,er0
17 bpl 1f
18 neg.l er0
191:
20 rts
21