blob: 89301a544c5c8d02d3ca92b82c08c29f805639c6 (
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)
*
* mir/main_bindings.hpp
* - main.cpp binding
*/
#pragma once
#include <iostream>
namespace HIR {
class Crate;
}
extern void HIR_GenerateMIR(::HIR::Crate& crate);
extern void MIR_Dump(::std::ostream& sink, const ::HIR::Crate& crate);
extern void MIR_CheckCrate(/*const*/ ::HIR::Crate& crate);
|