From: Evan Cheng Date: Fri, 6 Jul 2007 01:00:49 +0000 (+0000) Subject: PredicateDefOperand -> OptionalDefOperand. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=04c813d00ced172d9fbd26aa610e0992846a40bd;p=oota-llvm.git PredicateDefOperand -> OptionalDefOperand. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37931 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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"; } //===----------------------------------------------------------------------===//