]> git.lizzy.rs Git - rust.git/commit
Auto merge of #32432 - eddyb:dock-service, r=nikomatsakis
authorbors <bors@rust-lang.org>
Sun, 27 Mar 2016 00:29:59 +0000 (17:29 -0700)
committerbors <bors@rust-lang.org>
Sun, 27 Mar 2016 00:29:59 +0000 (17:29 -0700)
commitd5a91e69582b63f19192ad860df0f7a9a8530f56
tree91f6b0a0833b6d987faa74ed5adb489e89506d42
parent97ec69fb95c9d76dfd051482d827fcf4289c1dbf
parent035a645e64df9e5192698c3d6c442e57c39b40b8
Auto merge of #32432 - eddyb:dock-service, r=nikomatsakis

Flatten rustc and rustc_trans module hierarchy slightly.

The following moves were made, in the name of sanity/simplicity:
* `rustc::middle::{cfg, infer, traits, ty}` to `rustc::{cfg, infer, traits, ty}`
* `rustc::middle::subst` to `rustc::ty::subst`
* `rustc_trans::trans::*` to `rustc_trans::*`
* `rustc_trans::save` to `rustc_save_analysis` (cc @nrc)

I've rebased a larger WIP branch on top of this and the only conflicts were in imports, but YMMV.