fix(compiler): missing files
This commit is contained in:
parent
3b420057fe
commit
de2906ee8e
2 changed files with 26 additions and 0 deletions
15
src/compiler/init_module.cpp
Normal file
15
src/compiler/init_module.cpp
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
/*
|
||||||
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
||||||
|
Released under Apache 2.0 license as described in the file LICENSE.
|
||||||
|
|
||||||
|
Author: Leonardo de Moura
|
||||||
|
*/
|
||||||
|
#include "compiler/preprocess_rec.h"
|
||||||
|
namespace lean{
|
||||||
|
void initialize_compiler_module() {
|
||||||
|
initialize_preprocess_rec();
|
||||||
|
}
|
||||||
|
void finalize_compiler_module() {
|
||||||
|
finalize_preprocess_rec();
|
||||||
|
}
|
||||||
|
}
|
11
src/compiler/init_module.h
Normal file
11
src/compiler/init_module.h
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
/*
|
||||||
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
||||||
|
Released under Apache 2.0 license as described in the file LICENSE.
|
||||||
|
|
||||||
|
Author: Leonardo de Moura
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
namespace lean {
|
||||||
|
void initialize_compiler_module();
|
||||||
|
void finalize_compiler_module();
|
||||||
|
}
|
Loading…
Reference in a new issue