Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 8 pull requests #133865

Merged
merged 23 commits into from
Dec 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e75aa44
include LLDB and GDB visualizers in MSVC distribution
Walnut356 Dec 2, 2024
ec036cd
Don't try and handle unfed `type_of` on anon consts
BoxyUwU Nov 30, 2024
52d1c30
Add comment to test
BoxyUwU Dec 4, 2024
2a3b4a0
coverage: Extract `subtracted_sum` in counter creation
Zalathar Oct 16, 2024
7ecc677
coverage: Rename `CounterIncrementSite` to just `Site`
Zalathar Nov 27, 2024
aca6dba
coverage: Use a single `make_phys_counter` method
Zalathar Dec 1, 2024
44e4e45
coverage: Add an extra "transcribe" step after counter creation
Zalathar Nov 29, 2024
d7090f3
coverage: Use a separate counter type during counter creation
Zalathar Dec 2, 2024
ba08056
coverage: Remove the expression simplifier from `CoverageCounters`
Zalathar Dec 1, 2024
e52f5bf
Remove `-Zshow-span`.
nnethercote Dec 4, 2024
ec3424a
Remove some noisy tracing
oli-obk Dec 4, 2024
a91c361
Avoid `opaque type not constrained` errors in the presence of other e…
oli-obk Jul 31, 2024
4cbb599
Stop git from merging generated files
oli-obk Dec 4, 2024
836ab5c
make CoercePointee errors translatable
dingxiangfei2009 Dec 2, 2024
52a6bad
Update sysinfo version to 0.33.0
GuillaumeGomez Dec 4, 2024
adeb603
Rollup merge of #133737 - Walnut356:msvc_visualizers, r=onur-ozkan
matthiaskrgr Dec 4, 2024
4b2d68d
Rollup merge of #133774 - dingxiangfei2009:translatable-coerce-pointe…
matthiaskrgr Dec 4, 2024
e6d7ab2
Rollup merge of #133831 - BoxyUwU:ice_on_unfed_type_of, r=compiler-er…
matthiaskrgr Dec 4, 2024
a4dc963
Rollup merge of #133847 - nnethercote:rm-Z-show-span, r=compiler-errors
matthiaskrgr Dec 4, 2024
553db5f
Rollup merge of #133849 - Zalathar:replay, r=oli-obk
matthiaskrgr Dec 4, 2024
ea4e719
Rollup merge of #133850 - oli-obk:push-xryukktpyooq, r=compiler-errors
matthiaskrgr Dec 4, 2024
d80d2c6
Rollup merge of #133851 - oli-obk:push-pzwykzozkomq, r=jieyouxu
matthiaskrgr Dec 4, 2024
670affb
Rollup merge of #133856 - GuillaumeGomez:update-sysinfo, r=clubby789
matthiaskrgr Dec 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove some noisy tracing
  • Loading branch information
oli-obk committed Dec 4, 2024
commit ec3424a90515a26146e3e111171e43ed3db81194
3 changes: 0 additions & 3 deletions compiler/rustc_metadata/src/rmeta/table.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use rustc_hir::def::CtorOf;
use rustc_index::Idx;
use tracing::trace;

use crate::rmeta::*;

Expand Down Expand Up @@ -530,8 +529,6 @@ where
{
/// Given the metadata, extract out the value at a particular index (if any).
pub(super) fn get<'a, 'tcx, M: Metadata<'a, 'tcx>>(&self, metadata: M, i: I) -> T::Value<'tcx> {
trace!("LazyTable::lookup: index={:?} len={:?}", i, self.len);

// Access past the end of the table returns a Default
if i.index() >= self.len {
return Default::default();
Expand Down