Skip to content

Commit 975e63f

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 + af9328c commit 975e63f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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/docker/host-x86_64/arm-android/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.10
1+
FROM ubuntu:23.04
22

33
ARG DEBIAN_FRONTEND=noninteractive
44
COPY scripts/android-base-apt-get.sh /scripts/

src/ci/docker/host-x86_64/dist-android/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.10
1+
FROM ubuntu:23.04
22

33
COPY scripts/android-base-apt-get.sh /scripts/
44
RUN sh /scripts/android-base-apt-get.sh

src/ci/docker/host-x86_64/dist-various-1/install-x86_64-redox.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
set -ex
44

5-
curl https://static.redox-os.org/toolchain/x86_64-unknown-redox/relibc-install.tar.gz | \
5+
curl https://ci-mirrors.rust-lang.org/rustc/2022-11-27-relibc-install.tar.gz | \
66
tar --extract --gzip --directory /usr/local

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)