Skip to content

Commit f7fe970

Browse files
committedOct 13, 2017
incr comp: rustc_clean/dirty auto assert
This adds auto-assertion to `rustc_clean/dirty` and also implements more comprehensive testing for - src/test/incremental/hashes/enum_constructors.rs - src/test/incremental/hashes/enum_defs.rs - src/test/incremental/hashes/extern_mods.rs - src/test/incremental/hashes/inherent_impls.rs - src/test/incremental/hashes/statics.rs - src/test/incremental/hashes/struct_constructors.rs - src/test/incremental/hashes/type_defs.rs trait_defs.rs and trait_impl.rs are blocked on a hard to triage compiler ICE (at least hard for a newbie like me) having to do with some DepNodes not getting computed for traits. A FIXME has been added in the source to reflect this continued work.
1 parent ff8e264 commit f7fe970

File tree

11 files changed

+774
-465
lines changed

11 files changed

+774
-465
lines changed
 

‎src/librustc/dep_graph/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mod safe;
1919
mod serialized;
2020

2121
pub use self::dep_tracking_map::{DepTrackingMap, DepTrackingMapConfig};
22-
pub use self::dep_node::{DepNode, DepKind, DepConstructor, WorkProductId};
22+
pub use self::dep_node::{DepNode, DepKind, DepConstructor, WorkProductId, label_strs};
2323
pub use self::graph::{DepGraph, WorkProduct, DepNodeIndex, DepNodeColor};
2424
pub use self::prev::PreviousDepGraph;
2525
pub use self::query::DepGraphQuery;

0 commit comments

Comments
 (0)