[PATCH] D62292: [AArch64][SVE2] Asm: fix overlapping bit

Cullen Rhodes via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 24 01:44:01 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL361609: [AArch64][SVE2] Asm: fix overlapping bit (authored by c-rhodes, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D62292?vs=200887&id=201147#toc

Repository:
  rL LLVM

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

https://reviews.llvm.org/D62292

Files:
  llvm/trunk/lib/Target/AArch64/SVEInstrFormats.td


Index: llvm/trunk/lib/Target/AArch64/SVEInstrFormats.td
===================================================================
--- llvm/trunk/lib/Target/AArch64/SVEInstrFormats.td
+++ llvm/trunk/lib/Target/AArch64/SVEInstrFormats.td
@@ -2070,7 +2070,7 @@
   bits<5> Zdn;
   let Inst{31-24} = 0b01000100;
   let Inst{23-22} = sz;
-  let Inst{21-20} = 0b01;
+  let Inst{21}    = 0b0;
   let Inst{20-16} = opc{5-1};
   let Inst{15-14} = 0b10;
   let Inst{13}    = opc{0};


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62292.201147.patch
Type: text/x-patch
Size: 466 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190524/40ad832c/attachment.bin>


More information about the llvm-commits mailing list