Fill in the default predication bits for ARM unconditional branch.

llvm-svn: 118907
This commit is contained in:
Jim Grosbach 2010-11-12 18:13:26 +00:00
parent e5e40ec069
commit f9d1b45754

View File

@ -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;
}