Skip to content

Commit 3ad792d

Browse files
committed
Auto merge of #115819 - oli-obk:try_destructure_mir_constant_for_diagnostics_strikes_again, r=oli-obk
Expose try_destructure_mir_constant_for_diagnostics directly to clippy Otherwise clippy tries to use the query in ways that incremental caching will inevitably cause problems with. Hopefully gets rid of #83085 for good
2 parents 7c76587 + f425b57 commit 3ad792d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiler/rustc_const_eval/src/const_eval/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pub(crate) fn eval_to_valtree<'tcx>(
8585
}
8686

8787
#[instrument(skip(tcx), level = "debug")]
88-
pub(crate) fn try_destructure_mir_constant_for_diagnostics<'tcx>(
88+
pub fn try_destructure_mir_constant_for_diagnostics<'tcx>(
8989
tcx: TyCtxt<'tcx>,
9090
val: ConstValue<'tcx>,
9191
ty: Ty<'tcx>,

src/ci/scripts/setup-environment.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
1010

1111
# Load extra environment variables
1212
vars="${EXTRA_VARIABLES-}"
13-
echo "${vars}" | jq '' >/dev/null # Validate JSON and exit on errors
13+
echo "${vars}" | jq '.' >/dev/null # Validate JSON and exit on errors
1414
for key in $(echo "${vars}" | jq "keys[]" -r); do
1515
# On Windows, for whatever reason, $key contains the BOM character in it,
1616
# and that messes up `jq ".${key}"`. This line strips the BOM from the key.

src/tools/clippy/clippy_utils/src/consts.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ fn field_of_struct<'tcx>(
724724
field: &Ident,
725725
) -> Option<mir::ConstantKind<'tcx>> {
726726
if let mir::ConstantKind::Val(result, ty) = result
727-
&& let Some(dc) = lcx.tcx.try_destructure_mir_constant_for_diagnostics((result, ty))
727+
&& let Some(dc) = rustc_const_eval::const_eval::try_destructure_mir_constant_for_diagnostics(lcx.tcx, result, ty)
728728
&& let Some(dc_variant) = dc.variant
729729
&& let Some(variant) = adt_def.variants().get(dc_variant)
730730
&& let Some(field_idx) = variant.fields.iter().position(|el| el.name == field.name)

0 commit comments

Comments
 (0)