rust/src/test/codegen/target-feature-on-functions.rs
2018-12-25 21:08:33 -07:00

10 lines
182 B
Rust

// only-x86_64
// compile-flags: -C target-feature=+avx
#![crate_type = "lib"]
#[no_mangle]
pub fn foo() {
// CHECK: attributes #0 = { {{.*}}"target-features"="+avx"{{.*}} }
}