]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/target-feature-multiple.rs
Rollup merge of #82535 - wesleywiser:wip_codegen_thread_names, r=nagisa
[rust.git] / src / test / codegen / target-feature-multiple.rs
1 // only-x86_64
2 // compile-flags: -C target-feature=+sse2,-avx,+avx2 -C target-feature=+avx,-avx2
3
4 #![crate_type = "lib"]
5
6 #[no_mangle]
7 pub fn foo() {
8     // CHECK: attributes #0 = { {{.*}}"target-features"="+sse2,-avx,+avx2,+avx,-avx2"{{.*}} }
9 }