From 04c813d00ced172d9fbd26aa610e0992846a40bd Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Fri, 6 Jul 2007 01:00:49 +0000 Subject: [PATCH] PredicateDefOperand -> OptionalDefOperand. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37931 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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"; } //===----------------------------------------------------------------------===//