summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2015-09-17 12:45:36 +0200
committerAndy Wingo <wingo@pobox.com>2015-09-17 12:45:36 +0200
commit78fdc3e6731df78022345a2680c5c6a18115388a (patch)
tree005d7919e2dd7dd263808276e507077cbabfd2ac
parent00884bb79fff41fdf5f22f24a74e366a94a14c9b (diff)
downloadguile-78fdc3e6731df78022345a2680c5c6a18115388a.tar.gz
Remove unused (language tree-il inline) module.
* module/language/tree-il/inline.scm: Remove. * module/Makefile.am (TREE_IL_LANG_SOURCES): Remove inline.scm.
-rw-r--r--module/Makefile.am1
-rw-r--r--module/language/tree-il/inline.scm25
2 files changed, 0 insertions, 26 deletions
diff --git a/module/Makefile.am b/module/Makefile.am
index 3dc6117d3..17e663241 100644
--- a/module/Makefile.am
+++ b/module/Makefile.am
@@ -115,7 +115,6 @@ TREE_IL_LANG_SOURCES = \
language/tree-il/optimize.scm \
language/tree-il/canonicalize.scm \
language/tree-il/analyze.scm \
- language/tree-il/inline.scm \
language/tree-il/compile-cps.scm \
language/tree-il/debug.scm \
language/tree-il/spec.scm
diff --git a/module/language/tree-il/inline.scm b/module/language/tree-il/inline.scm
deleted file mode 100644
index 5a2d9af55..000000000
--- a/module/language/tree-il/inline.scm
+++ /dev/null
@@ -1,25 +0,0 @@
-;;; a simple inliner
-
-;; Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
-
-;;;; This library is free software; you can redistribute it and/or
-;;;; modify it under the terms of the GNU Lesser General Public
-;;;; License as published by the Free Software Foundation; either
-;;;; version 3 of the License, or (at your option) any later version.
-;;;;
-;;;; This library is distributed in the hope that it will be useful,
-;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-;;;; Lesser General Public License for more details.
-;;;;
-;;;; You should have received a copy of the GNU Lesser General Public
-;;;; License along with this library; if not, write to the Free Software
-;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-(define-module (language tree-il inline)
- #:export (inline!))
-
-(define (inline! x)
- (issue-deprecation-warning
- "`inline!' is deprecated. Use (language tree-il peval) instead.")
- x)