Skip to content

Commit 935cbd0

Browse files
AatchJames Miller
authored andcommitted
---
yaml --- r: 63353 b: refs/heads/snap-stage3 c: 98b1c9e h: refs/heads/master i: 63351: f309fdb v: v3
1 parent 6e0edf1 commit 935cbd0

File tree

3 files changed

+46
-36
lines changed

3 files changed

+46
-36
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 998e41a11a977413dcfc6716ab936ab9dcecb76d
4+
refs/heads/snap-stage3: 98b1c9e2072328177b73b44c4aa3a962fc66647f
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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;

branches/snap-stage3/src/librustc/rustc.rc

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -61,41 +61,8 @@ use syntax::codemap;
6161
use syntax::diagnostic;
6262

6363
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;
9966
pub mod ty;
10067
pub mod subst;
10168
pub mod resolve;

0 commit comments

Comments
 (0)