diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-01-08 17:41:33 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-01-08 17:41:33 +0000 |
| commit | c514d692bcfe7b3cf718fabc08de624f155813a8 (patch) | |
| tree | e3a1276ba9411e0aa27f58120b4b4ecc82674f7d /lib | |
| parent | 9f051186f85e75f9d2468353f40e96013a28138a (diff) | |
| download | external_llvm-c514d692bcfe7b3cf718fabc08de624f155813a8.zip external_llvm-c514d692bcfe7b3cf718fabc08de624f155813a8.tar.gz external_llvm-c514d692bcfe7b3cf718fabc08de624f155813a8.tar.bz2 | |
Minor change, change the order of two "let Inst{...}" stmts within multiclass
T2I_bin_ii12rs definition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93006 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Target/ARM/ARMInstrThumb2.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index 6f20ed4..769df7e 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -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. } |
