From 43b55bace5fad27af5da7a99784667363b92c45d Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 17 Feb 2000 19:39:46 +0000 Subject: import newlib-2000-02-17 snapshot --- newlib/libc/machine/h8500/shifts.c | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 newlib/libc/machine/h8500/shifts.c (limited to 'newlib/libc/machine/h8500/shifts.c') diff --git a/newlib/libc/machine/h8500/shifts.c b/newlib/libc/machine/h8500/shifts.c new file mode 100644 index 00000000000..5b8106931a2 --- /dev/null +++ b/newlib/libc/machine/h8500/shifts.c @@ -0,0 +1,45 @@ + + +int __ashrhi3(int a,int b) +{ + return a>>b; +} + +int __ashlhi3(int a,int b) +{ + return a<>b; +} + + + + +long __ashrsi3(long a, int b) +{ + return a>>b; +} + +long __ashlsi3(long a,int b) +{ + return a<>b; +} + -- cgit v1.2.1