From c2c0b495edd115c62ec93df926125b2d0cb6697b Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Fri, 6 Jul 2007 01:00:49 +0000 Subject: [PATCH] PredicateDefOperand -> OptionalDefOperand. llvm-svn: 37931 --- lib/Target/ARM/ARMInstrInfo.td | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 3e3b0eeb6c0..c609ee6174d 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -292,10 +292,10 @@ def ccop : ImmutablePredicateOperand { 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 { - let PrintMethod = "printPredicateOperand"; +def cc_out : OptionalDefOperand { + let PrintMethod = "printSBitModifierOperand"; } //===----------------------------------------------------------------------===//