File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
42
42
continue ;
43
43
}
44
44
45
- if stack.contains(" rustc_mir::monomorphize ::partitioning::collect_and_partition_mono_items" )
45
+ if stack.contains(" rustc_monomorphize ::partitioning::collect_and_partition_mono_items" )
46
46
|| stack.contains(" rustc_incremental::assert_dep_graph::assert_dep_graph" )
47
47
|| stack.contains(" rustc_symbol_mangling::test::report_symbol_names" )
48
48
{
@@ -81,7 +81,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
81
81
}
82
82
83
83
const COLLECT_AND_PARTITION_MONO_ITEMS: & str =
84
- " rustc_mir::monomorphize ::partitioning::collect_and_partition_mono_items" ;
84
+ " rustc_monomorphize ::partitioning::collect_and_partition_mono_items" ;
85
85
if let Some(index) = stack.find(COLLECT_AND_PARTITION_MONO_ITEMS) {
86
86
stack = & stack[..index + COLLECT_AND_PARTITION_MONO_ITEMS.len ()];
87
87
}
You can’t perform that action at this time.
0 commit comments