Changes in directory llvm/lib/Target/ARM:

ARMInstrInfo.td updated: 1.21 -> 1.22
---
Log message:

add the orr instruction


---
Diffs of the changes:  (+4 -0)

 ARMInstrInfo.td |    4 ++++
 1 files changed, 4 insertions(+)


Index: llvm/lib/Target/ARM/ARMInstrInfo.td
diff -u llvm/lib/Target/ARM/ARMInstrInfo.td:1.21 
llvm/lib/Target/ARM/ARMInstrInfo.td:1.22
--- llvm/lib/Target/ARM/ARMInstrInfo.td:1.21    Thu Aug 24 12:19:08 2006
+++ llvm/lib/Target/ARM/ARMInstrInfo.td Wed Sep  6 13:03:12 2006
@@ -113,6 +113,10 @@
                       "and $dst, $a, $b",
                       [(set IntRegs:$dst, (and IntRegs:$a, IntRegs:$b))]>;
 
+def orr_rr    : InstARM<(ops IntRegs:$dst, IntRegs:$a, IntRegs:$b),
+                      "orr $dst, $a, $b",
+                      [(set IntRegs:$dst, (or IntRegs:$a, IntRegs:$b))]>;
+
 let isTwoAddress = 1 in {
   def movcond : InstARM<(ops IntRegs:$dst, IntRegs:$false, IntRegs:$true, 
CCOp:$cc),
                         "mov$cc $dst, $true",



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to