Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
Update to nightly-2022-11-24 (#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanventer authored Nov 29, 2022
1 parent 32b5f63 commit 8526b00
Show file tree
Hide file tree
Showing 7 changed files with 130 additions and 58 deletions.
110 changes: 91 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified binaries/summary_store.tar
Binary file not shown.
4 changes: 2 additions & 2 deletions checker/src/call_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1429,11 +1429,11 @@ impl CallSiteOutput {
}
}

fn get_callable_index<'tcx>(
fn get_callable_index(
callables: &mut Vec<Callable>,
callable_index: &mut HashMap<DefId, usize>,
callable: DefId,
call_graph: &CallGraph<'tcx>,
call_graph: &CallGraph,
files: &mut Vec<String>,
file_map: &mut HashMap<rustc_span::FileName, usize>,
) -> usize {
Expand Down
4 changes: 2 additions & 2 deletions checker/tests/call_graph/fnptr_fold.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ commit;
/* EXPECTED:CALL_SITES{
"files": [
"tests/call_graph/fnptr_fold.rs",
"/rustc/9565dfeb4e6225177bbe78f18cd48a7982f34401/library/std/src/io/stdio.rs",
"/rustc/9565dfeb4e6225177bbe78f18cd48a7982f34401/library/core/src/fmt/mod.rs"
"/rustc/70f8737b2f5d3bf7d6b784fad00b663b7ff9feda/library/std/src/io/stdio.rs",
"/rustc/70f8737b2f5d3bf7d6b784fad00b663b7ff9feda/library/core/src/fmt/mod.rs"
],
"callables": [
{
Expand Down
4 changes: 2 additions & 2 deletions checker/tests/call_graph/static_fold.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ commit;
/* EXPECTED:CALL_SITES{
"files": [
"tests/call_graph/static_fold.rs",
"/rustc/9565dfeb4e6225177bbe78f18cd48a7982f34401/library/std/src/io/stdio.rs",
"/rustc/9565dfeb4e6225177bbe78f18cd48a7982f34401/library/core/src/fmt/mod.rs"
"/rustc/70f8737b2f5d3bf7d6b784fad00b663b7ff9feda/library/std/src/io/stdio.rs",
"/rustc/70f8737b2f5d3bf7d6b784fad00b663b7ff9feda/library/core/src/fmt/mod.rs"
],
"callables": [
{
Expand Down
Loading

0 comments on commit 8526b00

Please sign in to comment.