diff llvm/test/TableGen/trydecode-emission3.td @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents 1d019706d866
children c4bab56944e8
line wrap: on
line diff
--- a/llvm/test/TableGen/trydecode-emission3.td	Mon May 25 11:55:54 2020 +0900
+++ b/llvm/test/TableGen/trydecode-emission3.td	Tue Jun 08 06:07:14 2021 +0900
@@ -28,8 +28,8 @@
 
 def InstB : TestInstruction {
   bits<2> op;
-  let Inst{7-2} = {0,0,0,0,0,0};
-  let Inst{1-0} = op;
+  let Inst{7...2} = {0,0,0,0,0,0};
+  let Inst{1...0} = op;
   let OutOperandList = (outs InstBOp:$op);
   let AsmString = "InstB";
 }