Unconditional branch instruction encoding fix. Needs to use ABI, not AXI, to get...
authorJim Grosbach <grosbach@apple.com>
Tue, 7 Oct 2008 21:08:09 +0000 (21:08 +0000)
committerJim Grosbach <grosbach@apple.com>
Tue, 7 Oct 2008 21:08:09 +0000 (21:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57262 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMInstrInfo.td

index 9b8bfba1d39a35e5d4ea6115d6ce7034484d625c..3c4f8cde3ab49280338c9e566ee8e02e25405d3f 100644 (file)
@@ -567,7 +567,7 @@ let isBranch = 1, isTerminator = 1 in {
   // B is "predicable" since it can be xformed into a Bcc.
   let isBarrier = 1 in {
     let isPredicable = 1 in
-    def B : AXI<0xA, (outs), (ins brtarget:$target), Branch, "b $target",
+    def B : ABI<{0,1,0,1}, (outs), (ins brtarget:$target), Branch, "b $target",
                 [(br bb:$target)]>;
 
   let isNotDuplicable = 1, isIndirectBranch = 1 in {