chore(library/compiler): lc_util.* ==> util.*
This commit is contained in:
parent
81067d355d
commit
33821f399c
7 changed files with 6 additions and 8 deletions
|
|
@ -4,5 +4,5 @@ add_library(compiler OBJECT old_util.cpp eta_expansion.cpp preprocess.cpp
|
|||
lambda_lifting.cpp simp_inductive.cpp nat_value.cpp
|
||||
vm_compiler.cpp old_cse.cpp elim_unused_lets.cpp extract_values.cpp init_module.cpp
|
||||
## New compiler
|
||||
lc_util.cpp lcnf.cpp csimp.cpp elim_dead_let.cpp cse.cpp
|
||||
util.cpp lcnf.cpp csimp.cpp elim_dead_let.cpp cse.cpp
|
||||
)
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Author: Leonardo de Moura
|
|||
#include "kernel/instantiate.h"
|
||||
#include "kernel/abstract.h"
|
||||
#include "kernel/expr_maps.h"
|
||||
#include "library/compiler/lc_util.h"
|
||||
#include "library/compiler/util.h"
|
||||
|
||||
namespace lean {
|
||||
static name * g_cse_fresh = nullptr;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ Author: Leonardo de Moura
|
|||
#include "kernel/instantiate.h"
|
||||
#include "library/util.h"
|
||||
#include "library/constants.h"
|
||||
#include "library/compiler/lc_util.h"
|
||||
#include "library/compiler/util.h"
|
||||
|
||||
namespace lean {
|
||||
class csimp_fn {
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ Author: Leonardo de Moura
|
|||
*/
|
||||
#include <algorithm>
|
||||
#include "runtime/flet.h"
|
||||
#include "runtime/sstream.h"
|
||||
#include "kernel/type_checker.h"
|
||||
#include "kernel/instantiate.h"
|
||||
#include "library/expr_lt.h"
|
||||
|
|
@ -13,10 +14,7 @@ Author: Leonardo de Moura
|
|||
#include "library/aux_recursors.h"
|
||||
#include "library/constants.h"
|
||||
#include "library/projection.h"
|
||||
#include "library/compiler/lc_util.h"
|
||||
|
||||
#include "library/trace.h"
|
||||
#include "kernel/for_each_fn.h"
|
||||
#include "library/compiler/util.h"
|
||||
|
||||
namespace lean {
|
||||
class to_lcnf_fn {
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ Author: Leonardo de Moura
|
|||
#include "library/compiler/extract_values.h"
|
||||
#include "library/compiler/old_cse.h"
|
||||
|
||||
#include "library/compiler/lc_util.h"
|
||||
#include "library/compiler/util.h"
|
||||
#include "library/compiler/lcnf.h"
|
||||
#include "library/compiler/csimp.h"
|
||||
#include "library/compiler/elim_dead_let.h"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue