From d93d2f146d2209b826e3f4c125a2f53c09cd8475 Mon Sep 17 00:00:00 2001 From: Jubilee Young Date: Fri, 20 Sep 2024 08:41:31 -0700 Subject: [PATCH] miri: An error message got changed --- src/tools/miri/tests/fail/type-too-large.stderr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/miri/tests/fail/type-too-large.stderr b/src/tools/miri/tests/fail/type-too-large.stderr index 15ad8f1764d0e..cd27b2463891b 100644 --- a/src/tools/miri/tests/fail/type-too-large.stderr +++ b/src/tools/miri/tests/fail/type-too-large.stderr @@ -1,8 +1,8 @@ -error: post-monomorphization error: values of the type `[u8; 2305843011361177600]` are too big for the current architecture +error: post-monomorphization error: values of the type `[u8; 2305843011361177600]` are too big for the target architecture --> tests/fail/type-too-large.rs:LL:CC | LL | _fat = [0; (1u64 << 61) as usize + (1u64 << 31) as usize]; - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ values of the type `[u8; 2305843011361177600]` are too big for the current architecture + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ values of the type `[u8; 2305843011361177600]` are too big for the target architecture | = note: BACKTRACE: = note: inside `main` at tests/fail/type-too-large.rs:LL:CC