[clang] [CIR] Upstream handling for __builtin_prefetch (PR #164387)
Sirui Mu via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 21 09:19:19 PDT 2025
================
@@ -4052,6 +4049,39 @@ def CIR_ExpectOp : CIR_Op<"expect", [
}];
}
+//===----------------------------------------------------------------------===//
+// PrefetchOp
+//===----------------------------------------------------------------------===//
+
+def CIR_PrefetchOp : CIR_Op<"prefetch"> {
+ let summary = "prefetch operation";
+ let description = [{
+ The `cir.prefetch` op prefetches data from the memmory address.
----------------
Lancern wrote:
```suggestion
The `cir.prefetch` op prefetches data from the memory address.
```
https://github.com/llvm/llvm-project/pull/164387
More information about the cfe-commits
mailing list