[PATCH] D114066: [X86][AMX] Don't emit tilerelease for old AMX instrisic.

LuoYuanke via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 17 00:40:49 PST 2021


LuoYuanke added inline comments.


================
Comment at: llvm/lib/Target/X86/X86MachineFunctionInfo.h:215
+  bool hasVirtualTileReg() const { return HasVirtualTileReg; }
+  void setHasVirtualTileReg(bool v) { HasVirtualTileReg = v; }
+
----------------
pengfei wrote:
> This can be void, i.e.,
> `void setHasVirtualTileReg() { HasVirtualTileReg = true; }`
True for current patch. Not sure we may set it to false someday.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D114066/new/

https://reviews.llvm.org/D114066



More information about the llvm-commits mailing list