about summary refs log tree commit diff
path: root/src/test/codegen
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2021-08-03 07:59:59 -0700
committerAlex Crichton <alex@alexcrichton.com>2021-08-03 07:59:59 -0700
commit37c85ec9396cd1bce461af375e46930344340249 (patch)
tree66f0cfb74d44107fd7d2d25c67d3bf14fa3092be /src/test/codegen
parentfb939ed91d1a6f1f19f4439b96c41742fff8fd25 (diff)
downloadrust-37c85ec9396cd1bce461af375e46930344340249.tar.gz
rust-37c85ec9396cd1bce461af375e46930344340249.zip
Relax a codegen test
nounwind is no longer emitted but the test still passes
Diffstat (limited to 'src/test/codegen')
-rw-r--r--src/test/codegen/no-plt.rs2
1 files changed, 1 insertions, 1 deletions
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;
 }