SCM Repository
View of /branches/vis15/src/compiler/simplify/simple-opt.sml
Parent Directory
|
Revision Log
Revision 3468 -
(download)
(annotate)
Mon Nov 30 16:26:17 2015 UTC (5 years, 1 month ago) by jhr
File size: 543 byte(s)
Mon Nov 30 16:26:17 2015 UTC (5 years, 1 month ago) by jhr
File size: 543 byte(s)
working on simplify phase
(* simple-opt.sml * * Optimization of the SimpleAST representation * * This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu) * * COPYRIGHT (c) 2015 The University of Chicago * All rights reserved. *) structure SimpleOpt : sig val transform : Simple.program -> Simple.program end = struct structure S = Simple fun transform prog = let val prog = Inliner.transform prog val prog = SimpleContract.transform prog val prog = SimplifyVars.transform prog in prog end end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |