guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/02: Remove unused (language tree-il inline) module.


From: Andy Wingo
Subject: [Guile-commits] 01/02: Remove unused (language tree-il inline) module.
Date: Thu, 17 Sep 2015 18:15:11 +0000

wingo pushed a commit to branch master
in repository guile.

commit 78fdc3e6731df78022345a2680c5c6a18115388a
Author: Andy Wingo <address@hidden>
Date:   Thu Sep 17 12:45:36 2015 +0200

    Remove unused (language tree-il inline) module.
    
    * module/language/tree-il/inline.scm: Remove.
    * module/Makefile.am (TREE_IL_LANG_SOURCES): Remove inline.scm.
---
 module/Makefile.am                 |    1 -
 module/language/tree-il/inline.scm |   25 -------------------------
 2 files changed, 0 insertions(+), 26 deletions(-)

diff --git a/module/Makefile.am b/module/Makefile.am
index 3dc6117..17e6632 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 5a2d9af..0000000
--- 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]