[PATCH] D39190: [ARM] tSETEND needs IsThumb

Oliver Stannard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 23 09:56:20 PDT 2017


olista01 updated this revision to Diff 119882.
olista01 added a comment.

Updated patch with more context.


Repository:
  rL LLVM

https://reviews.llvm.org/D39190

Files:
  lib/Target/ARM/ARMInstrThumb.td


Index: lib/Target/ARM/ARMInstrThumb.td
===================================================================
--- lib/Target/ARM/ARMInstrThumb.td
+++ lib/Target/ARM/ARMInstrThumb.td
@@ -338,7 +338,7 @@
 }
 
 def tSETEND : T1I<(outs), (ins setend_op:$end), NoItinerary, "setend\t$end",
-                  []>, T1Encoding<0b101101>, Requires<[IsNotMClass]>, Deprecated<HasV8Ops> {
+                  []>, T1Encoding<0b101101>, Requires<[IsThumb, IsNotMClass]>, Deprecated<HasV8Ops> {
   bits<1> end;
   // A8.6.156
   let Inst{9-5} = 0b10010;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39190.119882.patch
Type: text/x-patch
Size: 538 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171023/745e6573/attachment.bin>


More information about the llvm-commits mailing list