[llvm-commits] [llvm] r37931 - /llvm/trunk/lib/Target/ARM/ARMInstrInfo.td

Evan Cheng evan.cheng at apple.com
Thu Jul 5 18:00:50 PDT 2007


Author: evancheng
Date: Thu Jul  5 20:00:49 2007
New Revision: 37931

URL: http://llvm.org/viewvc/llvm-project?rev=37931&view=rev
Log:
PredicateDefOperand -> OptionalDefOperand.

Modified:
    llvm/trunk/lib/Target/ARM/ARMInstrInfo.td

Modified: llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrInfo.td?rev=37931&r1=37930&r2=37931&view=diff

==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrInfo.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrInfo.td Thu Jul  5 20:00:49 2007
@@ -292,10 +292,10 @@
   let PrintMethod = "printPredicateOperand";
 }
 
-// Conditional code result for cmp, etc.
+// Conditional code result for instructions whose 's' bit is set, e.g. subs.
 //
-def cc_out : PredicateDefOperand<OtherVT, (ops CCR), (ops (i32 zero_reg))> {
-  let PrintMethod = "printPredicateOperand";
+def cc_out : OptionalDefOperand<OtherVT, (ops CCR), (ops (i32 zero_reg))> {
+  let PrintMethod = "printSBitModifierOperand";
 }
 
 //===----------------------------------------------------------------------===//





More information about the llvm-commits mailing list