From: Jim Grosbach Date: Fri, 12 Nov 2010 18:13:26 +0000 (+0000) Subject: Fill in the default predication bits for ARM unconditional branch. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d75c3f136b2f7496d177b868956a4489d4b980b9;p=oota-llvm.git Fill in the default predication bits for ARM unconditional branch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118907 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index b8948322c20..d2ac149928c 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -1381,6 +1381,7 @@ let isBranch = 1, isTerminator = 1 in { def B : ABXI<0b1010, (outs), (ins brtarget:$target), IIC_Br, "b\t$target", [(br bb:$target)]> { bits<24> target; + let Inst{31-28} = 0b1110; let Inst{23-0} = target; }