From 74dd3cb15931d8d7785b14b12500f190adae2b5e Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 26 Oct 2022 21:49:23 -0700 Subject: [PATCH] Fix noalias box test --- tests/codegen/noalias-box-off.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/codegen/noalias-box-off.rs b/tests/codegen/noalias-box-off.rs index afd17c7c160..aef3fd73994 100644 --- a/tests/codegen/noalias-box-off.rs +++ b/tests/codegen/noalias-box-off.rs @@ -3,6 +3,6 @@ #![crate_type = "lib"] // CHECK-LABEL: @box_should_not_have_noalias_if_disabled( -// CHECK-NOT: noalias +// CHECK-NOT: noalias{{.*}}% #[no_mangle] pub fn box_should_not_have_noalias_if_disabled(_b: Box) {}