[clang] [llvm] [AArch64] Add support for intent to read prefetch intrinsic (PR #179709)
Jonathan Thackray via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 6 03:16:16 PST 2026
================
@@ -435,6 +435,7 @@ let Requires = [{ {AArch64::FeaturePRFM_SLC} }] in {
def : PRFM<"pst", 0b10, "slc", 0b11, "keep", 0b0>;
def : PRFM<"pst", 0b10, "slc", 0b11, "strm", 0b1>;
}
+def : PRFM<"ir", 0b11, "", 0b00, "", 0b0>;
----------------
jthackray wrote:
Does this require a `let Requires = [{ {AArch64::FeaturePCDPHINT} }] in {` here?
https://github.com/llvm/llvm-project/pull/179709
More information about the cfe-commits
mailing list