]> git.proxmox.com Git - rustc.git/blob - src/test/codegen/target-feature-on-functions.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / codegen / target-feature-on-functions.rs
1 // only-x86_64
2 // compile-flags: -C target-feature=+avx
3
4 #![crate_type = "lib"]
5
6 #[no_mangle]
7 pub fn foo() {
8 // CHECK: attributes #0 = { {{.*}}"target-features"="+avx"{{.*}} }
9 }