blob: 16a5d7429f2381d9124565447320efb3ae652cf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* MRustC - Rust Compiler
* - By John Hodge (Mutabah/thePowersGang)
*
* trans/monomorphise.hpp
* - MIR monomorphisation
*/
#pragma once
#include <mir/mir_ptr.hpp>
#include "trans_list.hpp"
namespace HIR {
class Crate;
}
extern ::MIR::FunctionPointer Trans_Monomorphise(const ::HIR::Crate& crate, const Trans_Params& params, const ::MIR::FunctionPointer& tpl);
|