We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65da671 commit c8729e9Copy full SHA for c8729e9
src/intrinsics/llvm_x86.rs
@@ -22,6 +22,11 @@ pub(crate) fn codegen_x86_llvm_intrinsic_call<'tcx>(
22
// Spin loop hint
23
}
24
25
+ "llvm.x86.avx.vzeroupper" => {
26
+ // https://www.intel.com/content/www/us/en/docs/intrinsics-guide/index.html#text=_mm256_zeroupper&ig_expand=7218
27
+ // Do nothing. It is a perf hint anyway.
28
+ }
29
+
30
// Used by is_x86_feature_detected!();
31
"llvm.x86.xgetbv" => {
32
intrinsic_args!(fx, args => (xcr_no); intrinsic);
0 commit comments