summaryrefslogtreecommitdiff
path: root/src/trans/monomorphise.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/trans/monomorphise.hpp')
-rw-r--r--src/trans/monomorphise.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/trans/monomorphise.hpp b/src/trans/monomorphise.hpp
new file mode 100644
index 00000000..16a5d742
--- /dev/null
+++ b/src/trans/monomorphise.hpp
@@ -0,0 +1,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);