We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 168a837 commit 9c19120Copy full SHA for 9c19120
compiler/rustc_codegen_cranelift/src/intrinsics/mod.rs
@@ -542,6 +542,8 @@ fn codegen_regular_intrinsic_call<'tcx>(
542
543
sym::ptr_mask => {
544
intrinsic_args!(fx, args => (ptr, mask); intrinsic);
545
+ let ptr = ptr.load_scalar(fx);
546
+ let mask = mask.load_scalar(fx);
547
fx.bcx.ins().band(ptr, mask);
548
}
549
0 commit comments