about summary refs log tree commit diff
path: root/tests/codegen
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2023-05-28 22:03:06 -0400
committerBen Kimock <kimockb@gmail.com>2023-05-28 22:03:06 -0400
commitfe69acfdf0592e15bc0df3caffd922748d0ab70e (patch)
tree8541126d2eb309f23bad2a88fe8d20df45db4cd1 /tests/codegen
parentc5013ce996ff018d8c1de89c6505a76d2a83cfe8 (diff)
parent2f65aac667302849407fe677cc34078300b57eee (diff)
downloadrust-fe69acfdf0592e15bc0df3caffd922748d0ab70e.tar.gz
rust-fe69acfdf0592e15bc0df3caffd922748d0ab70e.zip
Merge from rustc
Diffstat (limited to 'tests/codegen')
-rw-r--r--tests/codegen/sanitizer-safestack-attr-check.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/codegen/sanitizer-safestack-attr-check.rs b/tests/codegen/sanitizer-safestack-attr-check.rs
new file mode 100644
index 00000000000..b73ed00e730
--- /dev/null
+++ b/tests/codegen/sanitizer-safestack-attr-check.rs
@@ -0,0 +1,11 @@
+// This tests that the safestack attribute is applied when enabling the safe-stack sanitizer.
+//
+// needs-sanitizer-safestack
+// compile-flags: -Zsanitizer=safestack
+
+#![crate_type = "lib"]
+
+// CHECK: ; Function Attrs:{{.*}}safestack
+pub fn tagged() {}
+
+// CHECK: attributes #0 = {{.*}}safestack