diff options
author | John Hodge <tpg@mutabah.net> | 2016-08-27 11:49:46 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-08-27 11:49:46 +0800 |
commit | c8a0500be622e501b21fc2d33a2a1bffc964a99b (patch) | |
tree | 26e74345d7dbe3cb78371529f90ffb9633c65624 /src | |
parent | 5fa1292cf4a8cbdd1d28cba5aa89f0e93922b6fc (diff) | |
download | mrust-c8a0500be622e501b21fc2d33a2a1bffc964a99b.tar.gz |
main - Some TODOs
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index bf5d19a5..e30040db 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -285,6 +285,11 @@ int main(int argc, char *argv[]) // MIR_Dump( os, *hir_crate );
// });
+ // TODO: Pass to mark items that are
+ // - Signature Exportable (public)
+ // - MIR Exportable (public generic, #[inline], or used by a either of those)
+ // - Require codegen (public or used by an exported function)
+
// Generate code for non-generic public items (if requested)
switch( crate_type )
{
|