aboutsummaryrefslogtreecommitdiff
path: root/gcc/libgcc1.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1995-01-27 20:56:32 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1995-01-27 20:56:32 -0500
commit55b8010e42c9f7c90ad23212ab958047047a16c8 (patch)
tree90f1a7ced44b918757cae1b4be3ff8e9fa41d352 /gcc/libgcc1.c
parent2391bfeaa294758dd36233d01a25f222bae2a196 (diff)
downloadgcc-55b8010e42c9f7c90ad23212ab958047047a16c8.zip
gcc-55b8010e42c9f7c90ad23212ab958047047a16c8.tar.gz
gcc-55b8010e42c9f7c90ad23212ab958047047a16c8.tar.bz2
(perform_lshlsi3, __lshlsi3): Deleted.
From-SVN: r8830
Diffstat (limited to 'gcc/libgcc1.c')
-rw-r--r--gcc/libgcc1.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/libgcc1.c b/gcc/libgcc1.c
index 7c0e0c1..97452c4 100644
--- a/gcc/libgcc1.c
+++ b/gcc/libgcc1.c
@@ -1,6 +1,6 @@
/* Subroutines needed by GCC output code on some machines. */
/* Compile this file with the Unix C compiler! */
-/* Copyright (C) 1987, 1988, 1992, 1994 Free Software Foundation, Inc.
+/* Copyright (C) 1987, 1988, 1992, 1994, 1995 Free Software Foundation, Inc.
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
@@ -76,10 +76,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define perform_lshrsi3(a, b) return a >> b
#endif
-#ifndef perform_lshlsi3
-#define perform_lshlsi3(a, b) return a << b
-#endif
-
#ifndef perform_ashrsi3
#define perform_ashrsi3(a, b) return a >> b
#endif
@@ -296,15 +292,6 @@ __lshrsi3 (a, b)
}
#endif
-#ifdef L_lshlsi3
-nongcc_SI_type
-__lshlsi3 (a, b)
- unsigned nongcc_SI_type a, b;
-{
- perform_lshlsi3 (a, b);
-}
-#endif
-
#ifdef L_ashrsi3
nongcc_SI_type
__ashrsi3 (a, b)