File tree Expand file tree Collapse file tree 3 files changed +46
-36
lines changed
branches/snap-stage3/src/librustc Expand file tree Collapse file tree 3 files changed +46
-36
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 998e41a11a977413dcfc6716ab936ab9dcecb76d
4
+ refs/heads/snap-stage3: 98b1c9e2072328177b73b44c4aa3a962fc66647f
5
5
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change
1
+ // Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2
+ // file at the top-level directory of this distribution and at
3
+ // http://rust-lang.org/COPYRIGHT.
4
+ //
5
+ // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+ // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+ // option. This file may not be copied, modified, or distributed
9
+ // except according to those terms.
10
+
11
+ pub mod macros;
12
+ pub mod inline;
13
+ pub mod monomorphize;
14
+ pub mod controlflow;
15
+ pub mod glue;
16
+ pub mod datum;
17
+ pub mod write_guard;
18
+ pub mod callee;
19
+ pub mod expr;
20
+ pub mod common;
21
+ pub mod consts;
22
+ pub mod type_of;
23
+ pub mod build;
24
+ pub mod base;
25
+ pub mod _match;
26
+ pub mod uniq;
27
+ pub mod closure;
28
+ pub mod tvec;
29
+ pub mod meth;
30
+ pub mod cabi;
31
+ pub mod cabi_x86;
32
+ pub mod cabi_x86_64;
33
+ pub mod cabi_arm;
34
+ pub mod cabi_mips;
35
+ pub mod foreign;
36
+ pub mod reflect;
37
+ pub mod shape;
38
+ pub mod debuginfo;
39
+ pub mod type_use;
40
+ pub mod reachable;
41
+ pub mod machine;
42
+ pub mod adt;
43
+ pub mod asm;
Original file line number Diff line number Diff line change @@ -61,41 +61,8 @@ use syntax::codemap;
61
61
use syntax::diagnostic;
62
62
63
63
pub mod middle {
64
- pub mod trans {
65
- pub mod macros;
66
- pub mod inline;
67
- pub mod monomorphize;
68
- pub mod controlflow;
69
- pub mod glue;
70
- pub mod datum;
71
- pub mod write_guard;
72
- pub mod callee;
73
- pub mod expr;
74
- pub mod common;
75
- pub mod consts;
76
- pub mod type_of;
77
- pub mod build;
78
- pub mod base;
79
- pub mod _match;
80
- pub mod uniq;
81
- pub mod closure;
82
- pub mod tvec;
83
- pub mod meth;
84
- pub mod cabi;
85
- pub mod cabi_x86;
86
- pub mod cabi_x86_64;
87
- pub mod cabi_arm;
88
- pub mod cabi_mips;
89
- pub mod foreign;
90
- pub mod reflect;
91
- pub mod shape;
92
- pub mod debuginfo;
93
- pub mod type_use;
94
- pub mod reachable;
95
- pub mod machine;
96
- pub mod adt;
97
- pub mod asm;
98
- }
64
+ #[path = "trans/mod.rs"]
65
+ pub mod trans;
99
66
pub mod ty;
100
67
pub mod subst;
101
68
pub mod resolve;
You can’t perform that action at this time.
0 commit comments