From 778769aafb56021bc858e6ce08ec3392d5d25f17 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 8 Sep 2006 12:47:03 +0000 Subject: implement unconditional branches fix select.ll llvm-svn: 30186 --- llvm/lib/Target/ARM/ARMInstrInfo.td | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'llvm/lib') diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td index 58c7b40608a..6cd90d99baa 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -127,6 +127,10 @@ def bcond : InstARM<(ops brtarget:$dst, CCOp:$cc), "b$cc $dst", [(armbr bb:$dst, imm:$cc)]>; +def b : InstARM<(ops brtarget:$dst), + "b $dst", + [(br bb:$dst)]>; + def cmp : InstARM<(ops IntRegs:$a, IntRegs:$b), "cmp $a, $b", [(armcmp IntRegs:$a, IntRegs:$b)]>; -- cgit v1.2.3