[PATCH] D74868: [AMDGPU] Fix DS_WRITE_B32 patterns

Stanislav Mekhanoshin via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 13:49:05 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG03954a12aecb: [AMDGPU] Fix DS_WRITE_B32 patterns (authored by rampitec).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D74868

Files:
  llvm/lib/Target/AMDGPU/DSInstructions.td


Index: llvm/lib/Target/AMDGPU/DSInstructions.td
===================================================================
--- llvm/lib/Target/AMDGPU/DSInstructions.td
+++ llvm/lib/Target/AMDGPU/DSInstructions.td
@@ -725,7 +725,7 @@
 defm : DSWritePat_mc <DS_WRITE_B8, i16, "truncstorei8_local">;
 defm : DSWritePat_mc <DS_WRITE_B16, i16, "store_local">;
 
-foreach vt = VGPR_32.RegTypes in {
+foreach vt = Reg32Types.types in {
 defm : DSWritePat_mc <DS_WRITE_B32, vt, "store_local">;
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D74868.245513.patch
Type: text/x-patch
Size: 484 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200219/473d7ff1/attachment-0001.bin>


More information about the llvm-commits mailing list