Minor change, change the order of two "let Inst{...}" stmts within multiclass
authorJohnny Chen <johnny.chen@apple.com>
Fri, 8 Jan 2010 17:41:33 +0000 (17:41 +0000)
committerJohnny Chen <johnny.chen@apple.com>
Fri, 8 Jan 2010 17:41:33 +0000 (17:41 +0000)
T2I_bin_ii12rs definition.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93006 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrThumb2.td

index 6f20ed4e9302e00270bce4947e24997a9a5cde9a..769df7ed916005465335d3bf94e8bead02e0e65d 100644 (file)
@@ -360,8 +360,8 @@ multiclass T2I_bin_ii12rs<bits<3> op23_21, string opc, PatFrag opnode,
                  opc, ".w\t$dst, $lhs, $rhs",
                  [(set GPR:$dst, (opnode GPR:$lhs, t2_so_reg:$rhs))]> {
      let Inst{31-27} = 0b11101;
-     let Inst{24} = 1;
      let Inst{26-25} = 0b01;
+     let Inst{24} = 1;
      let Inst{23-21} = op23_21;
      let Inst{20} = 0; // The S bit.
    }