Skip to content

Commit 4629f96

Browse files
committed
---
yaml --- r: 21966 b: refs/heads/snap-stage3 c: 1b5efaa h: refs/heads/master v: v3
1 parent ef7ffda commit 4629f96

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
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: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: e14a0eec23b49f51a32ea254f2749f2f08386f5b
4+
refs/heads/snap-stage3: 1b5efaac27408d958a0013c040ce269ccb5c142c
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/rustc/driver/driver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ fn compile_upto(sess: session, cfg: ast::crate_cfg,
173173
front::test::modify_for_testing(sess, crate));
174174

175175
crate = time(time_passes, ~"expansion", ||
176-
syntax::ext::expand::expand_crate(sess.parse_sess, sess.opts.cfg,
176+
syntax::ext::expand::expand_crate(sess.parse_sess, cfg,
177177
crate));
178178

179179
if upto == cu_expand { return {crate: crate, tcx: None}; }

branches/snap-stage3/src/rustc/driver/session.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ type options =
144144
addl_lib_search_paths: ~[Path],
145145
maybe_sysroot: Option<Path>,
146146
target_triple: ~str,
147+
// User-specified cfg meta items. The compiler itself will add additional
148+
// items to the crate config, and during parsing the entire crate config
149+
// will be added to the crate AST node. This should not be used for
150+
// anything except building the full crate config prior to parsing.
147151
cfg: ast::crate_cfg,
148152
binary: ~str,
149153
test: bool,

0 commit comments

Comments
 (0)