From 37c85ec9396cd1bce461af375e46930344340249 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 3 Aug 2021 07:59:59 -0700 Subject: [PATCH] Relax a codegen test nounwind is no longer emitted but the test still passes --- src/test/codegen/no-plt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/codegen/no-plt.rs b/src/test/codegen/no-plt.rs index f09770af2cb..b36e9ae88f4 100644 --- a/src/test/codegen/no-plt.rs +++ b/src/test/codegen/no-plt.rs @@ -4,7 +4,7 @@ // We need a function which is normally called through the PLT. extern "C" { - // CHECK: Function Attrs: nounwind nonlazybind + // CHECK: Function Attrs:{{.*}}nonlazybind fn getenv(name: *const u8) -> *mut u8; }